feat(zsh): add alias for journalctl
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 54s

This commit is contained in:
Price Hiller 2024-03-30 23:50:00 -05:00
parent 9ab9bf00f3
commit 6ea01189ad
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -75,6 +75,11 @@
alias sysu="systemctl --user"
alias sys="systemctl"
fi
if command -v journalctl >/dev/null 2>&1; then
alias jrnu="journalctl --user"
alias jrn="journalctl"
fi
fi
### Bat ###