Reformat file

This commit is contained in:
Santiago Lo Coco 2024-04-14 11:30:32 +02:00
parent 185272f1bc
commit 4281807521
1 changed files with 41 additions and 42 deletions

83
clauncher Executable file → Normal file
View File

@ -6,54 +6,53 @@ cacheFile="$cacheDir/launcher_opts"
historyFile="$cacheDir/launcher_opts_history" historyFile="$cacheDir/launcher_opts_history"
update_cache() { update_cache() {
if ! [[ -f "$cacheFile" ]] || [[ "$1" == "force" ]]; 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() {
local launcher local launcher
if [ "$1" = "fzf" ]; then if [ "$1" = "fzf" ]; then
launcher="fzf -e --tiebreak=index" launcher="fzf -e --tiebreak=index"
else else
shift shift
launcher="dmenu" launcher="dmenu"
#launcher="dmenu $@" fi
fi
gawk -v histfile="$historyFile" ' gawk -v histfile="$historyFile" '
BEGIN { BEGIN {
while( (getline < histfile) > 0 ) { while( (getline < histfile) > 0 ) {
sub("^[0-9]+\t","") sub("^[0-9]+\t","")
print print
x[$0]=1 x[$0]=1
} }
} !x[$0]++ ' "$cacheFile" \ } !x[$0]++ ' "$cacheFile" \
| $launcher \ | $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 ) {
count=$1 count=$1
sub("^[0-9]+\t","") sub("^[0-9]+\t","")
fname=$0 fname=$0
history[fname]=count history[fname]=count
} }
close(histfile) close(histfile)
} }
{ {
history[$0]++ history[$0]++
print print
} }
END { END {
if(!NR) exit if(!NR) exit
for (f in history) for (f in history)
print history[f],f | "sort -t '\t' -k1rn >" histfile print history[f],f | "sort -t '\t' -k1rn >" histfile
} }
' \ ' \
| xargs -I {} open -a "{}" | xargs -I {} open -a "{}"
} }
usage() { usage() {