1
0
Fork 0
dotfiles/.local/bin/statusbar/sb-disk

6 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}')"