blob: 972c2096c5e76a62270e1ed786969e1541f00ca2 (
plain) (
tree)
|
|
#!/bin/bash
# Prints out the total disk memory and the availeable 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 "$PREFIX$USED_SIZE/$TOTAL_SIZE ($PERCENTAGE)"
}
get_disk
|