From 85ae438fbc238fe56bcb1c10a12ec52365053cb6 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Sat, 26 Feb 2022 20:31:12 +0530 Subject: dwmbar dotfiles --- modules/disksize | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 modules/disksize (limited to 'modules/disksize') 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 -- cgit v1.2.3-59-g8ed1b