1
0
Fork 0
dotfiles/.local/bin/statusbar/sb-disk
2022-09-27 10:47:14 +02:00

5 lines
200 B
Bash
Executable file

#!/bin/sh
# $1 should be drive mountpoint, otherwise assumed /.
location=${1:-/}
[ -d "$location" ] || exit
printf "\033[11m\033[10m %s\n" "$(df -h "$location" | awk ' /[0-9]/ {print $3 "/" $2}')"