860 B
860 B
Launcher Script
Use choose-gui
to launch an application. This is used for an skhd
keyboard command to launch applications.
{ config, pkgs, ... }:
{
home.file."./.local/bin/launcher" = {
executable = true;
text = ''
Find an app with choose-gui
and open it.
#!/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"
Close the block.
'';
};
}