From 8dc475c40739ac49d7a2e2a1f5ae07c5285f044b Mon Sep 17 00:00:00 2001 From: Starfall Date: Mon, 26 Feb 2024 16:01:21 -0600 Subject: zsh: add `df` alias --- .config/zsh/utils.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/zsh/utils.zsh b/.config/zsh/utils.zsh index 4275aa0..486484a 100644 --- a/.config/zsh/utils.zsh +++ b/.config/zsh/utils.zsh @@ -45,6 +45,9 @@ alias mkdir='mkdir -p' # dd alias dd="dd status=progress oflag=direct,sync" +## df +alias df="df -TH --exclude-type=tmpfs --exclude-type=devtmpfs --exclude-type=squashfs" + # gpg if has gpg2; then alias gpg='gpg2' -- cgit