Last active
June 1, 2025 18:42
-
-
Save karanjitsingh/6e7ddb8de17f658c2aeb9445c7f68fb8 to your computer and use it in GitHub Desktop.
iTerm HotKey Automator
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
-- Automator Quick Action | |
-- ----------------------------------------------- | |
-- Workflow receives no input | |
-- Set keyboard shortcut for Services/General/... | |
on run {input, parameters} | |
tell application "iTerm" | |
if it is running then | |
if (count of windows) is 0 then | |
create window with default profile | |
end if | |
end if | |
activate | |
end tell | |
return input | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment