Fix bugs and refactor

This commit is contained in:
Santiago Lo Coco 2024-04-14 14:33:10 +02:00
parent 968936dc73
commit 124ba7b071
1 changed files with 6 additions and 3 deletions

View File

@ -4,14 +4,17 @@ 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"
ignoreFile="$configDir/.open_ignore"
addFile="$configDir/.open_add"
locationsFile="$configDir/.open_locations"
update_cache() { update_cache() {
if ! [[ -f "$cacheFile" ]] || [[ "$1" == "force" ]]; then if ! [[ -f "$cacheFile" ]] || [[ "$1" == "force" ]]; then
if [ -f "$customLocationsFile" ]; then if [ -f "$locationsFile" ]; then
while IFS= read -r location; do while IFS= read -r location; do
locations+=("$location") locations+=("$location")
done < "$customLocationsFile" done < "$locationsFile"
else else
locations=( locations=(
"$HOME/Applications" "$HOME/Applications"
@ -20,7 +23,7 @@ update_cache() {
) )
fi fi
find . "${locations[@]}" -maxdepth 2 -name "*.app" -type d | gxargs -d '\n' basename | sed 's/\.app$//' | ({ [ -f "$configDir/.open_ignore" ] && grep -v -f "$configDir/.open_ignore"; } || cat -) | ([ -f "$configDir/.open_add" ] && cat "$configDir/.open_add"; cat -) | sort -u > "$cacheFile" find . "${locations[@]}" -maxdepth 2 -name "*.app" -type d | gxargs -d '\n' basename | sed 's/\.app$//' | ({ [ -f "$ignoreFile" ] && grep -v -f "$ignoreFile"; } || cat -) | ([ -f "$addFile" ] && cat "$addFile"; cat -) | sort -u > "$cacheFile"
fi fi
} }