Skip to content

Instantly share code, notes, and snippets.

@jnovack
Created May 31, 2019 11:14
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnovack/fe129e5a0288481cc483137c030fd328 to your computer and use it in GitHub Desktop.
Save jnovack/fe129e5a0288481cc483137c030fd328 to your computer and use it in GitHub Desktop.
Alfred 4 Custom Terminal Applescript to Open iTerm
-- Alfred 4 Custom Terminal Script for iTerm
-- To Install, copy to: Alfred --> Features --> Terminal --> Custom
on alfred_script(q)
if application "iTerm2" is running or application "iTerm" is running then
run script "
on run {q}
tell application \"iTerm\"
activate
try
select first window
set onlywindow to true
on error
create window with default profile
select first window
set onlywindow to true
end try
tell the first window
if onlywindow is false then
create tab with default profile
end if
tell current session to write text q
end tell
end tell
end run
" with parameters {q}
else
run script "
on run {q}
tell application \"iTerm\"
activate
try
select first window
on error
create window with default profile
select first window
end try
tell the first window
tell current session to write text q
end tell
end tell
end run
" with parameters {q}
end if
end alfred_script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment