mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
228 B
12 lines
228 B
1 year ago
|
#!/bin/sh
|
||
5 years ago
|
|
||
|
# Status bar module for disk space
|
||
|
# $1 should be drive mountpoint
|
||
|
|
||
5 years ago
|
disk="/"
|
||
|
[ ! -z "$1" ] && disk="$1"
|
||
5 years ago
|
|
||
5 years ago
|
icon="$disk"
|
||
5 years ago
|
|
||
1 year ago
|
printf "^b#282828^^c#dfdfdf^ ^d^ %s\n" "$(df -h "$disk" | awk ' /[0-9]/ {print $3 "/" $2}')"
|