Update clauncher
This commit is contained in:
parent
878aa4625e
commit
798a43bac3
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue