shell: translate history statistic aliases to fish
Alan Pearce alan@alanpearce.eu
Thu, 24 Aug 2023 06:03:14 +0200
2 files changed, 5 insertions(+), 1 deletions(-)
M user/settings/fish.nix → user/settings/fish.nix
@@ -42,6 +42,10 @@ if test -n $KITTY_INSTALLATION_DIR set -x KITTY_SHELL_INTEGRATION no-cursor end ''; + shellAliases = { + hist-freq-lines = "history | sort | uniq -c | sort -gr | head -n100 | less"; + hist-freq-commands = "history | cut -d' ' -f 1 | sort | uniq -c | sort -gr | head -n100 | less"; + }; functions = { ds = "du -hd1 $argv[1] | sort -h"; };
M user/settings/shell.nix → user/settings/shell.nix
@@ -36,7 +36,7 @@ https = "xh --default-scheme https"; xhs = "xh --default-scheme https"; hist-freq-lines = "fc -l -10000 | cut -d' ' -f4- | sort | uniq -c | sort -gr | head -n100 | less"; - hist-freq-commands = "fc -l -10000 | cut -d' ' -f4 | sort | uniq -c | sort -gr | head -n10 | less"; + hist-freq-commands = "fc -l -10000 | cut -d' ' -f4 | sort | uniq -c | sort -gr | head -n100 | less"; wprop = "xprop | egrep '^WM_(CLASS|NAME|WINDOW_ROLE|TYPE)'"; # Enable the following commands to support aliases.