Skip to content

Instantly share code, notes, and snippets.

@suniltaneja
Created January 2, 2022 19:23
Show Gist options
  • Select an option

  • Save suniltaneja/260f0d2c29cdca019c09cda510bba795 to your computer and use it in GitHub Desktop.

Select an option

Save suniltaneja/260f0d2c29cdca019c09cda510bba795 to your computer and use it in GitHub Desktop.
// 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