From cc879e8d444c705ec2a6f97ac707c35d91e65dcc Mon Sep 17 00:00:00 2001 From: j4nk Date: Tue, 19 Dec 2023 13:31:42 -0500 Subject: [PATCH] Temps now update every second --- scripts/send_temps_to_lcd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/send_temps_to_lcd.sh b/scripts/send_temps_to_lcd.sh index 8dcd39b..f0751d2 100755 --- a/scripts/send_temps_to_lcd.sh +++ b/scripts/send_temps_to_lcd.sh @@ -21,5 +21,5 @@ sleep 1 while true do echo "CPU: $(sensors | grep 'Tccd1' | awk '{print substr($2, 2)}')?GPU: $(sensors | grep "edge" | awk '{print substr($2, 2)}')" | awk '{ gsub("\xc2\xb0", "\xdf", $0); print }' > $LCD_SERIAL_DEVICE - sleep 5 + sleep 1 done