From b315696aa711843a3416dbba17d30343a9b77de9 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Wed, 27 Sep 2017 14:00:48 -0500 Subject: [PATCH] Adding scu-* commands to alias for 'systemctl --user' --- plugins/systemd/systemd.plugin.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/systemd/systemd.plugin.zsh b/plugins/systemd/systemd.plugin.zsh index 5a35ecbc..752c46e3 100644 --- a/plugins/systemd/systemd.plugin.zsh +++ b/plugins/systemd/systemd.plugin.zsh @@ -8,8 +8,11 @@ sudo_commands=( link load cancel set-environment unset-environment edit) +all_commands=($user_commands $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 +for c in $all_commands; do; alias scu-$c="systemctl --user $c"; done alias sc-enable-now="sc-enable --now" alias sc-disable-now="sc-disable --now"