Update clauncher
This commit is contained in:
parent
878aa4625e
commit
798a43bac3
|
@ -3,11 +3,11 @@
|
|||
cacheDir=${XDG_CACHE_HOME:-"$HOME/.cache"}
|
||||
configDir=${XDG_CONFIG_HOME:-"$HOME/.config"}/clauncher
|
||||
|
||||
cache="$cacheDir/launcher_opts"
|
||||
cacheFile="$cacheDir/launcher_opts"
|
||||
historyFile="$cacheDir/launcher_opts_history"
|
||||
|
||||
if ! [ -f "$cache" ]; then
|
||||
source $configDir/clauncher-update
|
||||
if ! [[ -f "$cacheFile" ]] || [[ "$1" == "update" ]]; 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 > "$cacheFile"
|
||||
fi
|
||||
|
||||
gawk -v histfile=$historyFile '
|
||||
|
@ -17,7 +17,7 @@ gawk -v histfile=$historyFile '
|
|||
print
|
||||
x[$0]=1
|
||||
}
|
||||
} !x[$0]++ ' "$cache" \
|
||||
} !x[$0]++ ' "$cacheFile" \
|
||||
| fzf -e --tiebreak=index \
|
||||
| gawk -v histfile=$historyFile '
|
||||
BEGIN {
|
||||
|
|
Loading…
Reference in New Issue