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.
5 lines
112 B
Bash
Executable file
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
|