aboutsummaryrefslogtreecommitdiff
path: root/macos.local/.local/bin/launcher.org
diff options
context:
space:
mode:
authorJacob Janzen <jacob.a.s.janzen@gmail.com>2024-10-07 22:58:07 -0500
committerJacob Janzen <jacob.a.s.janzen@gmail.com>2024-10-07 22:58:07 -0500
commit4062d9a2c75a2b267ece56983b68139e1acff506 (patch)
tree1bb5cd732ba6453a1e62f92c63bf7616929a546c /macos.local/.local/bin/launcher.org
parentb36cf6a8d19074dde9c2c81550bdf5a3901b37f6 (diff)
migrate scripts
Diffstat (limited to 'macos.local/.local/bin/launcher.org')
-rwxr-xr-xmacos.local/.local/bin/launcher.org13
1 files changed, 0 insertions, 13 deletions
diff --git a/macos.local/.local/bin/launcher.org b/macos.local/.local/bin/launcher.org
deleted file mode 100755
index f74d094..0000000
--- a/macos.local/.local/bin/launcher.org
+++ /dev/null
@@ -1,13 +0,0 @@
-#+title: Application Launcher Script
-
-Search several locations for applications with =choose=.
-#+begin_src sh :tangle ~/.local/bin/launcher :mkdirp yes :tangle-mode o755
- #!/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"
-#+end_src
-
-Try opening the app in each location.
-#+begin_src sh :tangle ~/.local/bin/launcher :mkdirp yes :tangle-mode o755
- 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