Adding a conky

This commit is contained in:
Derek Taylor
2023-08-31 18:14:26 -05:00
parent cf12132648
commit ef6f204591
17 changed files with 1061 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Variable
temp=$(cat /sys/class/thermal/thermal_zone0/temp)
cputemp=$(expr $temp / 1000)
base=32
# Main
Fahrenheit=$(expr $cputemp \* 9 / 5 + $base)
echo $Fahrenheit
exit