Update clauncher

This commit is contained in:
Santiago Lo Coco 2024-03-21 13:49:15 +01:00
parent 878aa4625e
commit 798a43bac3
1 changed files with 4 additions and 4 deletions

View File

@ -3,11 +3,11 @@
cacheDir=${XDG_CACHE_HOME:-"$HOME/.cache"} cacheDir=${XDG_CACHE_HOME:-"$HOME/.cache"}
configDir=${XDG_CONFIG_HOME:-"$HOME/.config"}/clauncher configDir=${XDG_CONFIG_HOME:-"$HOME/.config"}/clauncher
cache="$cacheDir/launcher_opts" cacheFile="$cacheDir/launcher_opts"
historyFile="$cacheDir/launcher_opts_history" historyFile="$cacheDir/launcher_opts_history"
if ! [ -f "$cache" ]; then if ! [[ -f "$cacheFile" ]] || [[ "$1" == "update" ]]; then
source $configDir/clauncher-update "$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 > "$cacheFile"
fi fi
gawk -v histfile=$historyFile ' gawk -v histfile=$historyFile '
@ -17,7 +17,7 @@ gawk -v histfile=$historyFile '
print print
x[$0]=1 x[$0]=1
} }
} !x[$0]++ ' "$cache" \ } !x[$0]++ ' "$cacheFile" \
| fzf -e --tiebreak=index \ | fzf -e --tiebreak=index \
| gawk -v histfile=$historyFile ' | gawk -v histfile=$historyFile '
BEGIN { BEGIN {