Created
January 2, 2022 19:23
-
-
Save suniltaneja/260f0d2c29cdca019c09cda510bba795 to your computer and use it in GitHub Desktop.
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
| // Menu: Shortcut Run | |
| // Description: Shortcut runner for Mac OSX Monterey | |
| // Author: Sunil Taneja | |
| // Twitter: @suniltaneja | |
| import "@johnlindquist/kit" | |
| const list = await exec(`shortcuts list`) | |
| const list_arr = list.stdout.split("\n") | |
| const shortcut = await arg("Enter Shortcut", list_arr) | |
| await $`/usr/bin/shortcuts run ${shortcut}` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment