mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
9 lines
156 B
Bash
Executable File
9 lines
156 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
if [[ "$(uname -s)" =~ "darwin" ]]; then
|
|
df -h /System/Volumes/Data 2>/dev/null
|
|
else
|
|
df -h /dev/sd* -x devtmpfs 2>/dev/null
|
|
fi
|
|
echo
|