mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Add scu-* aliases for 'systemctl --user' commands (#6661)
This commit is contained in:
parent
be65adc6c3
commit
b743ce9224
1 changed files with 6 additions and 0 deletions
|
@ -10,7 +10,13 @@ sudo_commands=(
|
||||||
|
|
||||||
for c in $user_commands; do; alias sc-$c="systemctl $c"; done
|
for c in $user_commands; do; alias sc-$c="systemctl $c"; done
|
||||||
for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done
|
for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done
|
||||||
|
for c in $user_commands; do; alias scu-$c="systemctl --user $c"; done
|
||||||
|
for c in $sudo_commands; do; alias scu-$c="systemctl --user $c"; done
|
||||||
|
|
||||||
alias sc-enable-now="sc-enable --now"
|
alias sc-enable-now="sc-enable --now"
|
||||||
alias sc-disable-now="sc-disable --now"
|
alias sc-disable-now="sc-disable --now"
|
||||||
alias sc-mask-now="sc-mask --now"
|
alias sc-mask-now="sc-mask --now"
|
||||||
|
|
||||||
|
alias scu-enable-now="scu-enable --now"
|
||||||
|
alias scu-disable-now="scu-disable --now"
|
||||||
|
alias scu-mask-now="scu-mask --now"
|
||||||
|
|
Loading…
Reference in a new issue