aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/scripts/run-command-in-terminal.applescript
blob: 898ec7a65789a323d0af5f782d5e899943ec3c82 (plain)
1
2
3
4
5
6
7
on run argv
    set commandToRun to item 1 of argv
    tell application "Terminal"
        do script commandToRun
        activate
    end tell
end run