From d9b85126e6dc3eb1f857a2fc0c84f36496a44e2c Mon Sep 17 00:00:00 2001 From: Martin Sekera Date: Fri, 25 Feb 2022 00:15:55 +0100 Subject: [PATCH] zshrc: don't show 25 lines of journal in systemctl status --- etc/zsh/zshrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 15ace68..fcdad20 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -54,8 +54,8 @@ alias pp=python2 alias ppp=python3 alias Ju="journalctl --unit" alias Jue="journalctl --pager-end --unit" -alias Juf="journalctl --follow --full --unit" -alias Ss="systemctl status --no-pager --full --lines=25" +alias Juf="journalctl --follow --unit" +alias Ss="systemctl status --no-pager" alias SE="systemctl enable" alias SD="systemctl disable" alias SS="systemctl start" @@ -64,8 +64,8 @@ alias SL="systemctl reload" alias SX="systemctl stop" alias uJu="journalctl --user --unit" alias uJue="journalctl --user --pager-end --unit" -alias uJuf="journalctl --user --follow --full --unit" -alias uSs="systemctl --user status --no-pager --full --lines=25" +alias uJuf="journalctl --user --follow --unit" +alias uSs="systemctl --user status --no-pager" alias uSE="systemctl --user enable" alias uSD="systemctl --user disable" alias uSS="systemctl --user start"