Support dmenu and fix bugs
This commit is contained in:
parent
498a4ddca1
commit
185272f1bc
24
clauncher
24
clauncher
|
@ -6,13 +6,22 @@ cacheFile="$cacheDir/launcher_opts"
|
||||||
historyFile="$cacheDir/launcher_opts_history"
|
historyFile="$cacheDir/launcher_opts_history"
|
||||||
|
|
||||||
update_cache() {
|
update_cache() {
|
||||||
if ! [[ -f "$cacheFile" ]] || [[ "$1" == "update" ]]; then
|
if ! [[ -f "$cacheFile" ]] || [[ "$1" == "force" ]]; 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"
|
"$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
|
||||||
}
|
}
|
||||||
|
|
||||||
run_launcher() {
|
run_launcher() {
|
||||||
gawk -v histfile=$historyFile '
|
local launcher
|
||||||
|
if [ "$1" = "fzf" ]; then
|
||||||
|
launcher="fzf -e --tiebreak=index"
|
||||||
|
else
|
||||||
|
shift
|
||||||
|
launcher="dmenu"
|
||||||
|
#launcher="dmenu $@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
gawk -v histfile="$historyFile" '
|
||||||
BEGIN {
|
BEGIN {
|
||||||
while( (getline < histfile) > 0 ) {
|
while( (getline < histfile) > 0 ) {
|
||||||
sub("^[0-9]+\t","")
|
sub("^[0-9]+\t","")
|
||||||
|
@ -20,8 +29,8 @@ run_launcher() {
|
||||||
x[$0]=1
|
x[$0]=1
|
||||||
}
|
}
|
||||||
} !x[$0]++ ' "$cacheFile" \
|
} !x[$0]++ ' "$cacheFile" \
|
||||||
| fzf -e --tiebreak=index \
|
| $launcher \
|
||||||
| gawk -v histfile=$historyFile '
|
| gawk -v histfile="$historyFile" '
|
||||||
BEGIN {
|
BEGIN {
|
||||||
FS=OFS="\t"
|
FS=OFS="\t"
|
||||||
while ( (getline < histfile) > 0 ) {
|
while ( (getline < histfile) > 0 ) {
|
||||||
|
@ -58,9 +67,12 @@ EOF
|
||||||
runScript() {
|
runScript() {
|
||||||
if [ "$#" -eq 0 ]; then
|
if [ "$#" -eq 0 ]; then
|
||||||
update_cache
|
update_cache
|
||||||
run_launcher
|
run_launcher fzf
|
||||||
elif [ "$1" == "update" ]; then
|
elif [ "$1" == "dmenu" ]; then
|
||||||
update_cache
|
update_cache
|
||||||
|
run_launcher dmenu
|
||||||
|
elif [ "$1" == "update" ]; then
|
||||||
|
update_cache force
|
||||||
elif [ "$1" == "help" ]; then
|
elif [ "$1" == "help" ]; then
|
||||||
usage
|
usage
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue