From 0ce7301d8799ba91a0d57ab208e2d80d20935a83 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Mon, 18 May 2020 20:56:13 -0400 Subject: temp fixes for blocks utf+8 errors, added dict.sh, updated porter --- i3blocks-cputemp.sh | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'i3blocks-cputemp.sh') diff --git a/i3blocks-cputemp.sh b/i3blocks-cputemp.sh index c88ecef..faac2de 100755 --- a/i3blocks-cputemp.sh +++ b/i3blocks-cputemp.sh @@ -1,16 +1,18 @@ #!/bin/sh -low=122 # 50C +#low=122 # 50C high=176 # 80C -icon_low=󱃃 -icon_mid=󰔏 -icon_high=󱃂 +#icon_low=󱃃 +#icon_mid=󰔏 +#icon_high=󱃂 +icon=󰔏 celcius=$(sysctl -n dev.cpu.0.temperature | cut -d'.' -f1) -[ $celcius -lt $low ] && printf $icon_low -[ $celcius -ge $low ] && [ $fahrenheit -lt $high ] && printf $icon_mid -[ $celcius -ge $high ] && printf $icon_high +#[ $celcius -lt $low ] && printf $icon_low +#[ $celcius -ge $low ] && [ $fahrenheit -lt $high ] && printf $icon_mid +#[ $celcius -ge $high ] && printf $icon_high +[ $celcius -ge $high ] && notify-send "CPU temperature hit 176F (80C)" #printf " %s C\n" $celcius # 'Murica -printf " %s ℉\n" $(echo "scale=1; $celcius * 9 / 5 + 32" | bc -l) +printf "$icon%s ℉\n" $(echo "scale=1; $celcius * 9 / 5 + 32" | bc -l) -- cgit v1.2.3