From 148df95769fb17f8b38d904b18fd24802551a6ce Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Mon, 12 Oct 2015 10:42:50 -0700 Subject: [PATCH] Use sc-u for systemctl user aliases --- plugins/systemd/systemd.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/systemd/systemd.plugin.zsh b/plugins/systemd/systemd.plugin.zsh index 752c46e34..3a442580b 100644 --- a/plugins/systemd/systemd.plugin.zsh +++ b/plugins/systemd/systemd.plugin.zsh @@ -12,7 +12,7 @@ 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 +for c in $all_commands; do; alias sc-u-$c="systemctl --user $c"; done alias sc-enable-now="sc-enable --now" alias sc-disable-now="sc-disable --now"