Dotfiles-dwm/dwmbar/modules/disksize
2024-06-02 14:02:06 +03:00

17 lines
349 B
Bash
Executable File

#!/bin/bash
# Prints out the total disk memory and the available memory
PREFIX=' '
get_disk()
{
TOTAL_SIZE=$( df -h --total | tail -1 | awk {'printf $2'})
USED_SIZE=$(df -h --total | tail -1 | awk {'printf $3'})
PERCENTAGE=$(df -h --total | tail -1 | awk {'printf $5'})
echo "$USED_SIZE/$TOTAL_SIZE ($PERCENTAGE)"
}
get_disk