diff options
author | Robby Russell <robby@planetargon.com> | 2015-10-09 07:19:54 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-10-09 07:19:54 -0700 |
commit | 2522ab4504376db4410bfa784dd1d582538fd576 (patch) | |
tree | e823dc51cd8e05fa7c130e07459fe8e885062a7a /plugins/systemd | |
parent | 0be21f025e6f77e936b7b373f1a2a14b4a7145ba (diff) | |
parent | 86d881c47de3d0ed791e1e7d8c2ed480e6c781ee (diff) | |
download | zsh-2522ab4504376db4410bfa784dd1d582538fd576.tar.gz zsh-2522ab4504376db4410bfa784dd1d582538fd576.tar.bz2 zsh-2522ab4504376db4410bfa784dd1d582538fd576.zip |
Merge pull request #4204 from DoctorJellyface/patch-1
Added --now systemd aliases
Diffstat (limited to 'plugins/systemd')
-rw-r--r-- | plugins/systemd/systemd.plugin.zsh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/systemd/systemd.plugin.zsh b/plugins/systemd/systemd.plugin.zsh index 07eb595a6..b19793557 100644 --- a/plugins/systemd/systemd.plugin.zsh +++ b/plugins/systemd/systemd.plugin.zsh @@ -10,3 +10,7 @@ sudo_commands=( 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 + +alias sc-enable-now="sc-enable --now" +alias sc-disable-now="sc-disable --now" +alias sc-mask-now="sc-mask --now" |