]> git.rmz.io Git - dotfiles.git/blob - zsh/plugins/systemd/systemd.plugin.zsh
add xbindkeysrc
[dotfiles.git] / zsh / plugins / systemd / systemd.plugin.zsh
1 user_commands=(
2 list-units is-active status show help list-unit-files
3 is-enabled list-jobs show-environment)
4
5 sudo_commands=(
6 start stop reload restart try-restart isolate kill
7 reset-failed enable disable reenable preset mask unmask
8 link load cancel set-environment unset-environment)
9
10 for c in $user_commands; do; alias sc-$c="systemctl $c"; done
11 for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done