Refactor and delete clauncher-update

This commit is contained in:
Santiago Lo Coco 2024-03-21 14:18:06 +01:00
parent 798a43bac3
commit 498a4ddca1
2 changed files with 60 additions and 41 deletions

View File

@ -2,44 +2,72 @@
cacheDir=${XDG_CACHE_HOME:-"$HOME/.cache"} cacheDir=${XDG_CACHE_HOME:-"$HOME/.cache"}
configDir=${XDG_CONFIG_HOME:-"$HOME/.config"}/clauncher configDir=${XDG_CONFIG_HOME:-"$HOME/.config"}/clauncher
cacheFile="$cacheDir/launcher_opts" cacheFile="$cacheDir/launcher_opts"
historyFile="$cacheDir/launcher_opts_history" historyFile="$cacheDir/launcher_opts_history"
if ! [[ -f "$cacheFile" ]] || [[ "$1" == "update" ]]; then update_cache() {
"$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" if ! [[ -f "$cacheFile" ]] || [[ "$1" == "update" ]]; then
fi "$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
}
gawk -v histfile=$historyFile ' run_launcher() {
BEGIN { gawk -v histfile=$historyFile '
while( (getline < histfile) > 0 ) {
sub("^[0-9]+\t","")
print
x[$0]=1
}
} !x[$0]++ ' "$cacheFile" \
| fzf -e --tiebreak=index \
| gawk -v histfile=$historyFile '
BEGIN { BEGIN {
FS=OFS="\t" while( (getline < histfile) > 0 ) {
while ( (getline < histfile) > 0 ) {
count=$1
sub("^[0-9]+\t","") sub("^[0-9]+\t","")
fname=$0 print
history[fname]=count x[$0]=1
}
} !x[$0]++ ' "$cacheFile" \
| fzf -e --tiebreak=index \
| 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)
} }
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() {
cat << EOF
usage: ${0##*/} [command]
update - Update program list
help - Display this help message
EOF
}
runScript() {
if [ "$#" -eq 0 ]; then
update_cache
run_launcher
elif [ "$1" == "update" ]; then
update_cache
elif [ "$1" == "help" ]; then
usage
exit 0
else
echo "Invalid command. Use 'help' to see available commands."
exit 1
fi
}
runScript "$@"

View File

@ -1,9 +0,0 @@
#!/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"