Add clauncher-update
This commit is contained in:
parent
2afac0813d
commit
878aa4625e
|
@ -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 '
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue