Update clauncher

This commit is contained in:
Santiago Lo Coco 2024-04-14 12:18:57 +02:00
parent e9bcc4cbfa
commit 53a3289df7
3 changed files with 20 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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
}