dotfiles/services/usv.sh
Marty Oehme e792fc53af
services: Add usv user service manager alias
If `vsv` void service manager program is on the system, we also point it
to our own user service directory and make it accessible as `usv` user
service manager.
2025-02-25 23:25:28 +01:00

5 lines
112 B
Bash
Executable file

#!/usr/bin/env sh
if command -v vsv >/dev/null 2>&1; then
alias usv='vsv -d $HOME/.local/state/service'
fi