Created
June 3, 2016 13:48
-
-
Save lyoe/33da2d7aa6a6b6fd790f757481713daa to your computer and use it in GitHub Desktop.
Alfred Example for youtube-dl.
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
| on alfred_script(q) | |
| tell application "iTerm" | |
| activate | |
| try | |
| select first window | |
| on error | |
| create window with default profile | |
| select first window | |
| end try | |
| tell the first window | |
| set newTab to (create tab with default profile) | |
| tell current session | |
| write text "youtube-dl " & q | |
| end tell | |
| end tell | |
| end tell | |
| end alfred_script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment