Forked from flyfloor/gist:5ebc3cbeb1c89438444e9582748c175b
Created
December 15, 2018 10:13
-
-
Save jacky1104/03209f98581946439b82a4dd02acafd6 to your computer and use it in GitHub Desktop.
alfred use iterm2 as default terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This is v0.6 of the custom script for AlfredApp for iTerm 2.9+ | |
-- Please see https://github.com/stuartcryan/custom-iterm-applescripts-for-alfred/ | |
-- for the latest changes. | |
-- Please note, if you store the iTerm binary in any other location than the Applications Folder | |
-- please ensure you update the two locations below (in the format of : rather than / for folder dividers) | |
-- this gets around issues with AppleScript not handling things well if you have two iTerm binaries on your system... which can happen :D | |
on alfred_script(q) | |
if application "iTerm2" is running or application "iTerm" is running then | |
run script " | |
on run {q} | |
tell application \":Applications:iTerm.app\" | |
activate | |
try | |
select first window | |
set onlywindow to false | |
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 \":Applications:iTerm.app\" | |
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