From b92ff022ca57507791316d4ed4894976c0795cd1 Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 6 Nov 2024 11:38:21 -0600 Subject: [PATCH] fish: fix journalctl identifier abbreviations Signed-off-by: Myned --- options/custom/programs/fish.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/options/custom/programs/fish.nix b/options/custom/programs/fish.nix index 4f50995..b4ee02b 100644 --- a/options/custom/programs/fish.nix +++ b/options/custom/programs/fish.nix @@ -122,14 +122,15 @@ in { gy = "git cherrypick"; jc = "journalctl"; + jcei = "journalctl --pager-end --identifier"; + jcfi = "journalctl --follow --identifier"; + jci = "journalctl --identifier"; jcs = "journalctl --system"; jcse = "journalctl --system --pager-end"; jcsei = "journalctl --user --pager-end --identifier"; jcseu = "journalctl --system --pager-end --unit"; jcsf = "journalctl --system --follow"; - jcsfi = "journalctl --user --follow --identifier"; jcsfu = "journalctl --system --follow --unit"; - jcsi = "journalctl --system --identifier"; jcsu = "journalctl --system --unit"; jcu = "journalctl --user"; jcue = "journalctl --user --pager-end";