mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
314 B
10 lines
314 B
#!/bin/sh
|
|
|
|
icon="^b#282828^^c#dfdfdf^ ^d^ "
|
|
total=$(free -h | awk '/^Mem:/ {print $3/$2}')
|
|
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 ' ' ' ')%
|
|
echo "$icon $percent"
|