about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2024-02-26 16:01:21 -0600
committerStarfall <us@starfall.systems>2024-02-26 16:01:33 -0600
commit8dc475c40739ac49d7a2e2a1f5ae07c5285f044b (patch)
tree4a3d44a581725fb93a314c37387c8cfdee74c954
parent0319df4b22b5dc08329a6eb9d633608cf69b3602 (diff)
zsh: add `df` alias
-rw-r--r--.config/zsh/utils.zsh3
1 files changed, 3 insertions, 0 deletions
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'