From 377d62e90a918d643dc1410f778a8e7be0bf7e98 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Fri, 12 Aug 2022 14:57:29 +0200 Subject: [PATCH] zshrc: Use sudo alias and remove `sudo` from an alias Signed-off-by: Christoph Heiss --- zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 75d06d8..63ada13 100644 --- a/zshrc +++ b/zshrc @@ -115,8 +115,9 @@ alias lpsql='psql -U postgres -h localhost' # Misc alias diff='diff -u -p -r -N --color=auto' -alias journalctl-clean='sudo journalctl --vacuum-time=7d' +alias journalctl-clean='journalctl --vacuum-time=7d' alias open=xdg-open +alias sudo='sudo ' alias usystemctl='systemctl --user' alias valgrind-full-check='valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --num-callers=256' alias weather='curl wttr.in'