#!/bin/sh icon="^b#282828^^c#dfdfdf^  ^d^ " if [ "$1" = "amd" ]; then temp=$(sensors | awk '/Tctl/ {print $2}') elif [ "$1" = "intel" ]; then temp=$(sensors | awk '/Tctl/ {print $3}') fi temp=$(printf %3s $(echo ${temp##*+} | sed "s/\..*//") | tr ' ' ' ') echo "$icon$temp°C"