add the open app and terminal scripts to aerospace config

This commit is contained in:
Ivar Fatland
2025-10-02 08:24:29 +02:00
parent f1a0883eed
commit 542937fa7f
3 changed files with 10 additions and 2 deletions
+2 -2
View File
@@ -37,8 +37,8 @@ cmd-j = 'focus down'
cmd-k = 'focus up' cmd-k = 'focus up'
cmd-l = 'focus right' cmd-l = 'focus right'
cmd-d = 'exec-and-forget bash /Users/ivar.fatland/bin/open-applicaiton.sh' cmd-d = 'exec-and-forget bash $HOME/bin/open-applicaiton.sh'
cmd-enter = 'exec-and-forget bash /Users/ivar.fatland/bin/open-terminal.sh' cmd-enter = 'exec-and-forget bash $HOME/bin/open-terminal.sh'
cmd-shift-h = 'move left' cmd-shift-h = 'move left'
cmd-shift-j = 'move down' cmd-shift-j = 'move down'
+7
View File
@@ -0,0 +1,7 @@
ls /Applications/ /Applications/Utilities/ /System/Applications/ /System/Applications/Utilities/ /Users/ivar.fatland/Applications/ /Users/ivar.fatland/Applications/Chrome\ Apps.localized/ | \
grep '\.app$' | \
sed 's/\.app$//g' | \
{ cat; echo "Finder"; } | \
sort | \
choose -z -a -p "Open App" | \
xargs -I {} open -n -a "{}.app"
+1
View File
@@ -0,0 +1 @@
open -n -a "alacritty.app"