diff options
author | 2022-02-26 20:31:12 +0530 | |
---|---|---|
committer | 2022-02-26 20:31:12 +0530 | |
commit | 85ae438fbc238fe56bcb1c10a12ec52365053cb6 (patch) | |
tree | 7aa2c802739657f22fd8de735207b27fc6e7e8a9 /modules/disksize | |
download | dwmbar-85ae438fbc238fe56bcb1c10a12ec52365053cb6.tar.gz dwmbar-85ae438fbc238fe56bcb1c10a12ec52365053cb6.tar.bz2 dwmbar-85ae438fbc238fe56bcb1c10a12ec52365053cb6.zip |
dwmbar dotfiles
Diffstat (limited to 'modules/disksize')
-rwxr-xr-x | modules/disksize | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/disksize b/modules/disksize new file mode 100755 index 0000000..972c209 --- /dev/null +++ b/modules/disksize @@ -0,0 +1,16 @@ +#!/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 |