aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/scripts/run-command-in-iterm2.applescript
blob: ab00115b381c7834ad0d69da3ffc04a4fd11c2c8 (plain)
1
2
3
4
5
6
7
8
9
on run argv
    set commandToRun to item 1 of argv
    tell application "iTerm"
        set newWindow to (create window with default profile)
        tell current session of newWindow
            write text commandToRun
        end tell
    end tell
end run