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.
7 lines
238 B
7 lines
238 B
5 years ago
|
#!/bin/sh
|
||
|
|
||
1 year ago
|
icon="^b#282828^^c#dfdfdf^ ^d^ "
|
||
|
total=$(free -h | awk '/^Mem:/ {print $3/$2}')
|
||
1 year ago
|
percent=$(printf %3s $(printf %-4s $total | tr ' ' '0' | cut -c1-4 | sed -e 's/\.//g' | sed -e 's/^0//g') | tr ' ' ' ')%
|
||
|
echo "$icon$percent"
|