Reformat file
This commit is contained in:
parent
185272f1bc
commit
4281807521
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue