updated stuff

This commit is contained in:
Nikolas Weger 2019-12-11 12:13:54 +01:00
parent c37679a883
commit c4ff5a9900
24 changed files with 138 additions and 30 deletions

8
zsh/plgs/systemctl.zsh Normal file
View file

@ -0,0 +1,8 @@
cmds=(status show start stop reload restart enable disable daemon-reload)
for cmd in $cmds; do
alias sc-$cmd="sudo systemctl $cmd"
done
alias sc-enablenow="sc-enable --now"
alias sc-disablenow="sc-disable --now"