1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-21 11:07:44 +01:00

10 lines
314 B
Plaintext
Raw Normal View History

2019-09-07 17:42:18 +02:00
#!/bin/sh
2023-10-17 05:18:46 +02:00
icon="^b#282828^^c#dfdfdf^  ^d^ "
total=$(free -h | awk '/^Mem:/ {print $3/$2}')
2023-10-17 20:51:02 +02:00
percent=$(printf %-4s $total | tr ' ' '0')
percent=$(echo $percent | sed -e 's/^0//g')
percent=$(echo $percent | sed -e 's/\.//g')
percent=$(printf %3s $(echo $percent | cut -c1-2) | tr ' ' ' ')%
2023-10-17 20:01:38 +02:00
echo "$icon $percent"