From 61efc2273523576e097c1e7318209f230602875f Mon Sep 17 00:00:00 2001 From: Martin Sekera Date: Wed, 24 Apr 2019 00:22:12 +0200 Subject: [PATCH] added systemd aliases for restart and reload --- etc/zsh/zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index add136a..4684c52 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -37,6 +37,8 @@ alias Ss="systemctl status --no-pager --full --lines=25" alias SE="systemctl enable" alias SD="systemctl disable" alias SS="systemctl start" +alias SR="systemctl restart" +alias SL="systemctl reload" alias SX="systemctl stop" alias uJu="journalctl --user --unit" alias uJue="journalctl --user --pager-end --unit" @@ -45,6 +47,8 @@ alias uSs="systemctl --user status --no-pager --full --lines=25" alias uSE="systemctl --user enable" alias uSD="systemctl --user disable" alias uSS="systemctl --user start" +alias uSR="systemctl --user restart" +alias uSL="systemctl --user reload" alias uSX="systemctl --user stop" # apparently this is the only way of setting GNU Screen to UTF-8