From 53a3289df767547469146cb29b25b11bda4970b2 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 14 Apr 2024 12:18:57 +0200 Subject: [PATCH] Update clauncher --- Makefile | 13 ++++++++++--- README.md | 11 ++++++----- clauncher | 5 ++++- 3 files changed, 20 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 04a0f69..2871ac3 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,29 @@ DESTDIR = /usr/local/bin INSTALL_PATH = $(DESTDIR)/clauncher +HELPER_PATH = $(DESTDIR)/capture.zsh all: install -install: $(INSTALL_PATH) +install: $(INSTALL_PATH) $(HELPER_PATH) $(INSTALL_PATH): clauncher @echo "Installing clauncher to $(DESTDIR)" @install -m 755 $< $(DESTDIR) +$(HELPER_PATH): capture.zsh + @echo "Installing capture.zsh to $(DESTDIR)" + @install -m 755 $< $(DESTDIR) + uninstall: @echo "Removing clauncher from $(DESTDIR)" @rm -f $(INSTALL_PATH) + @echo "Removing capture.zsh from $(DESTDIR)" + @rm -f $(HELPER_PATH) help: @echo "Available targets:" - @echo " make install - Install clauncher to $(DESTDIR)" - @echo " make uninstall - Remove clauncher from $(DESTDIR)" + @echo " make install - Install clauncher and capture.zsh to $(DESTDIR)" + @echo " make uninstall - Remove clauncher and capture.zsh from $(DESTDIR)" @echo " make help - Show this help message" .PHONY: all install uninstall help diff --git a/README.md b/README.md index db6c9c2..305f0c0 100644 --- a/README.md +++ b/README.md @@ -64,13 +64,14 @@ This will present you with a list of applications to choose from using the fzf i ## Configuration -**clauncher** creates a cache file (`$XDG_CACHE_HOME/launcher_opts`) and a history file (`$XDG_CACHE_HOME/launcher_opts_history`) to improve performance and remember your application launch history. The cache and history files are generated in the respective XDG standard directories, falling back to default locations if the XDG variables are not set. +**clauncher** enhances its performance and retains your application launch history by generating a cache file (`$XDG_CACHE_HOME/launcher_opts`) and a history file (`$XDG_CACHE_HOME/launcher_opts_history`). These files adhere to the XDG standard directories, with fallback locations if the XDG variables are not set. -The configuration directory is `$XDG_CONFIG_HOME/clauncher` (or `$HOME/.config/clauncher` if `XDG_CONFIG_HOME` is not set), where you can find: +For customization, if you want to ignore or add applications, you should manually create the directory `~/.config/clauncher` if it doesn't exist, and then create two files inside it: -- `capture.zsh`: A script to capture the available applications on your system. -- `.open_ignore`: A list of applications to ignore. -- `.open_add`: A list of additional applications to include. +- `.open_ignore`: List the applications or commands to ignore, each on a new line. +- `.open_add`: List the additional applications or commands to include, each on a new line. + +Edit these files directly to specify the applications or commands you want to exclude or include. ## License diff --git a/clauncher b/clauncher index 380c9f3..728d293 100755 --- a/clauncher +++ b/clauncher @@ -7,7 +7,10 @@ historyFile="$cacheDir/launcher_opts_history" update_cache() { 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" + [[ -f "$configDir/.open_ignore" ]] && ignore_option=('-v' '-f' "$configDir/.open_ignore") + [[ -f "$configDir/.open_add" ]] && add_option="$(cat "$configDir/.open_add")" + + capture.zsh 'open -a' | sed -e 's/.*-a//' -e "s/\\\//g" -e "s/\r//g" | grep "${ignore_option[@]:-}" | (echo -n "${add_option:-}"; cat -) | sort -u > "$cacheFile" fi }