Add clauncher-update

This commit is contained in:
Santiago Lo Coco 2024-03-20 22:12:19 +01:00
parent 2afac0813d
commit 878aa4625e
2 changed files with 10 additions and 1 deletions

View File

@ -7,7 +7,7 @@ cache="$cacheDir/launcher_opts"
historyFile="$cacheDir/launcher_opts_history" historyFile="$cacheDir/launcher_opts_history"
if ! [ -f "$cache" ]; then if ! [ -f "$cache" ]; then
"$configDir"/capture.zsh 'open -a' | sed -e 's/.*-a//' -e "s/\\\//g" -e "s/\r//g" | grep -v -f "$configDir"/.open_ignore | (cat "$configDir"/.open_add; cat -) | sort -u > "$cache" source $configDir/clauncher-update
fi fi
gawk -v histfile=$historyFile ' gawk -v histfile=$historyFile '

9
clauncher-update Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
cacheDir=${XDG_CACHE_HOME:-"$HOME/.cache"}
configDir=${XDG_CONFIG_HOME:-"$HOME/.config"}/clauncher
cache="$cacheDir/launcher_opts"
"$configDir"/capture.zsh 'open -a' | sed -e 's/.*-a//' -e "s/\\\//g" -e "s/\r//g" | grep -v -f "$configDir"/.open_ignore | (cat "$configDir"/.open_add; cat -) | sort -u > "$cache"