mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-18 18:07:45 +01:00
10 lines
314 B
Bash
Executable File
10 lines
314 B
Bash
Executable File
#!/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"
|