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

13 lines
342 B
Text
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
# $1 should be drive mountpoint, otherwise assumed /.
# $2 should be an icon, otherwise  is used.
reset="\033[0m"
big="\033[12m"
defaulticon=""
2022-07-04 21:36:33 +02:00
location=${1:-/}
[ -d "$location" ] || exit
[ -z "$2" ] && icon="$defaulticon" || icon="$2"
printf "%b" "$big$icon$reset $(df -H "$location" | awk ' /[0-9]/ {print $3 "/" $2}')\n"