1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-09 19:11:15 +02:00

statusbar: made hardware icons stick together

This commit is contained in:
2024-03-11 00:26:11 +01:00
parent a165c62469
commit 50451fe26e
3 changed files with 9 additions and 9 deletions

View File

@@ -12,12 +12,12 @@ temp=$(printf %3s $(echo ${temp##*+} | sed "s/\..*//") | tr ' ' ' ')
if [ $temp -gt 100 ]
then
icon="^b#282828^^c#ff0000^  ^d^"
icon="^b#282828^^c#ff0000^ "
elif [ $temp -gt 80 ]
then
icon="^b#282828^^c#ffff00^  ^d^"
icon="^b#282828^^c#ffff00^ "
else
icon="^b#282828^^c#dfdfdf^  ^d^"
icon="^b#282828^^c#dfdfdf^ "
fi
echo "$icon"