From 4281807521af129ef24fd86a3dd65049ecefee21 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 14 Apr 2024 11:30:32 +0200 Subject: [PATCH] Reformat file --- clauncher | 83 +++++++++++++++++++++++++++---------------------------- 1 file changed, 41 insertions(+), 42 deletions(-) mode change 100755 => 100644 clauncher diff --git a/clauncher b/clauncher old mode 100755 new mode 100644 index 4f4be1d..380c9f3 --- a/clauncher +++ b/clauncher @@ -6,54 +6,53 @@ cacheFile="$cacheDir/launcher_opts" historyFile="$cacheDir/launcher_opts_history" update_cache() { - 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 + 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() { - local launcher - if [ "$1" = "fzf" ]; then - launcher="fzf -e --tiebreak=index" - else - shift - launcher="dmenu" - #launcher="dmenu $@" - fi + local launcher + if [ "$1" = "fzf" ]; then + launcher="fzf -e --tiebreak=index" + else + shift + launcher="dmenu" + fi - gawk -v histfile="$historyFile" ' - BEGIN { - while( (getline < histfile) > 0 ) { - sub("^[0-9]+\t","") - print - x[$0]=1 - } - } !x[$0]++ ' "$cacheFile" \ - | $launcher \ - | gawk -v histfile="$historyFile" ' - BEGIN { - FS=OFS="\t" - while ( (getline < histfile) > 0 ) { - count=$1 - sub("^[0-9]+\t","") - fname=$0 - history[fname]=count - } - close(histfile) - } + gawk -v histfile="$historyFile" ' + BEGIN { + while( (getline < histfile) > 0 ) { + sub("^[0-9]+\t","") + print + x[$0]=1 + } + } !x[$0]++ ' "$cacheFile" \ + | $launcher \ + | gawk -v histfile="$historyFile" ' + BEGIN { + FS=OFS="\t" + while ( (getline < histfile) > 0 ) { + count=$1 + sub("^[0-9]+\t","") + fname=$0 + history[fname]=count + } + close(histfile) + } - { - history[$0]++ - print - } + { + history[$0]++ + print + } - END { - if(!NR) exit - for (f in history) - print history[f],f | "sort -t '\t' -k1rn >" histfile - } - ' \ - | xargs -I {} open -a "{}" + END { + if(!NR) exit + for (f in history) + print history[f],f | "sort -t '\t' -k1rn >" histfile + } + ' \ + | xargs -I {} open -a "{}" } usage() {