mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-06 21:23:04 +02:00
15 lines
218 B
Bash
Executable File
15 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
# i3blocks disk usage indicator with a single df helper.
|
|
|
|
set -euo pipefail
|
|
|
|
{
|
|
read -r _
|
|
read -r _ size used _
|
|
} < <(df -h / 2> /dev/null) || {
|
|
echo " N/A"
|
|
exit 0
|
|
}
|
|
|
|
echo " ${used}/${size}"
|