From 05fc8a71c5ae86aeeb227582b4ee4b85f0104e13 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Sun, 5 Oct 2025 23:21:36 -0500 Subject: [PATCH] add tr to ll command alias --- common/general/shell/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/general/shell/common.nix b/common/general/shell/common.nix index c7bd3df..2d79ea5 100644 --- a/common/general/shell/common.nix +++ b/common/general/shell/common.nix @@ -40,7 +40,7 @@ with lib; date_compact = "date +'%Y%m%d'"; date_short = "date +'%Y-%m-%d'"; ls = "ls --color -Gah"; - ll = "ls --color -Galh"; + ll = "ls --color -Galhtr"; lss = "du --max-depth=0 -h {.,}* 2>/dev/null | sort -hr"; psg = "ps aux | head -n 1 && ps aux | grep -v 'grep' | grep"; cl = "clear";