1
0
Fork 0
env/.local/bin/open-iterm

10 lines
184 B
Plaintext
Raw Normal View History

2018-10-31 17:47:17 +08:00
#!/usr/bin/osascript
if application "iTerm" is running then
tell application "iTerm"
2018-10-31 17:47:17 +08:00
create window with default profile
end tell
else
tell application "iTerm" to activate
2018-10-31 17:47:17 +08:00
end if