From c7b5a8609c62823d45fbfab14398906fd392a38b Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 28 May 2023 15:33:45 -0400 Subject: [PATCH] tweak(global/shell): add acat and vcat aliases audio cat and video cat respectively, in the same vein as icat -> image cat --- modules/global/shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/global/shell.nix b/modules/global/shell.nix index 92df583..d5f1ea4 100644 --- a/modules/global/shell.nix +++ b/modules/global/shell.nix @@ -69,6 +69,8 @@ in cat = "bat --paging=never"; catp = "bat --paging=always"; + acat = "mpv --no-audio-display"; + vcat = "mpv"; lsdisk = "lsblk -o name,size,mountpoints,fstype,label,uuid,fsavail,fsuse%";