Skip to content

Instantly share code, notes, and snippets.

@jtiala
Last active March 24, 2021 15:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jtiala/6a82d12de43f68c8c8295d1147fd2957 to your computer and use it in GitHub Desktop.
Save jtiala/6a82d12de43f68c8c8295d1147fd2957 to your computer and use it in GitHub Desktop.
Open new iTerm window for each Alfred terminal command
-- open new iTerm window for each Alfred terminal command
-- for iTerm 3.1.1+
-- based on script by Sinan (https://github.com/stuartcryan/custom-iterm-applescripts-for-alfred)
on alfred_script(q)
if application "iTerm2" is running or application "iTerm" is running then
run script "
on run {q}
tell application \"iTerm\"
activate
create window with default profile
select first window
tell the first window
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
select first window
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