aboutsummaryrefslogtreecommitdiff
path: root/macos.local/.flake/home/scripts/launcher.org
blob: 3ef221dafb0db961d0e1dadddfec50dcfe359c51 (plain)
1
2
3
4
5
6
7
8
9
#+title: Launcher Script

Use =choose-gui= to launch an application. This is used for a keyboard command to launch applications.
#+begin_src sh
  #!/bin/sh
  app="$(ls /Applications/ /Applications/Utilities/ /System/Applications/ /System/Applications/Utilities/ ~/Applications/ | grep '\.app$' | sed 's/\.app$//g' | choose -f "SauceCodePro Nerd Font" -s 15 -b ece0c9).app"

  open -n "$HOME/Applications/$app" || open -n "/Applications/$app" || open -n "/System/Applications/Utilities/$app" || open -n "/System/Applications/$app" || open -n "/Applications/Utilities/$app"
#+end_src