From 798a43bac3b584bf7a4370d916a55de67daa21e7 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 21 Mar 2024 13:49:15 +0100 Subject: [PATCH] Update clauncher --- clauncher | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clauncher b/clauncher index fbc64c7..e3dcda6 100755 --- a/clauncher +++ b/clauncher @@ -3,11 +3,11 @@ cacheDir=${XDG_CACHE_HOME:-"$HOME/.cache"} configDir=${XDG_CONFIG_HOME:-"$HOME/.config"}/clauncher -cache="$cacheDir/launcher_opts" +cacheFile="$cacheDir/launcher_opts" historyFile="$cacheDir/launcher_opts_history" -if ! [ -f "$cache" ]; then - source $configDir/clauncher-update +if ! [[ -f "$cacheFile" ]] || [[ "$1" == "update" ]]; 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 gawk -v histfile=$historyFile ' @@ -17,7 +17,7 @@ gawk -v histfile=$historyFile ' print x[$0]=1 } - } !x[$0]++ ' "$cache" \ + } !x[$0]++ ' "$cacheFile" \ | fzf -e --tiebreak=index \ | gawk -v histfile=$historyFile ' BEGIN {