feat: Creates run-handler script so that using find works properly for runs.

This commit is contained in:
2025-11-10 00:12:00 -05:00
parent 9c007c9434
commit e972dd331c
4 changed files with 116 additions and 149 deletions

View File

@@ -3,11 +3,13 @@
XDG_DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share}
install() {
mkdir -p "$XDG_DATA_HOME/clipse"
log " Ensure clipse data directory exists, and start clipse."
mkdir -p "$XDG_DATA_HOME/clipse" &>/dev/null
setsid uwsm app -- clipse -listen
}
uninstall() {
log " Removing clipse data directory."
rm -rf "$XDG_DATA_HOME/clipse"
}