From 185272f1bcc632c8853d4ff767cd19152ca86e77 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 6 Apr 2024 00:06:27 +0200 Subject: [PATCH] Support dmenu and fix bugs --- clauncher | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/clauncher b/clauncher index 322a09b..4f4be1d 100755 --- a/clauncher +++ b/clauncher @@ -6,13 +6,22 @@ cacheFile="$cacheDir/launcher_opts" historyFile="$cacheDir/launcher_opts_history" 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" fi } 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 { while( (getline < histfile) > 0 ) { sub("^[0-9]+\t","") @@ -20,8 +29,8 @@ run_launcher() { x[$0]=1 } } !x[$0]++ ' "$cacheFile" \ - | fzf -e --tiebreak=index \ - | gawk -v histfile=$historyFile ' + | $launcher \ + | gawk -v histfile="$historyFile" ' BEGIN { FS=OFS="\t" while ( (getline < histfile) > 0 ) { @@ -58,9 +67,12 @@ EOF runScript() { if [ "$#" -eq 0 ]; then update_cache - run_launcher - elif [ "$1" == "update" ]; then + run_launcher fzf + elif [ "$1" == "dmenu" ]; then update_cache + run_launcher dmenu + elif [ "$1" == "update" ]; then + update_cache force elif [ "$1" == "help" ]; then usage exit 0