Added fish + foot configs to desktop

This commit is contained in:
2026-02-14 20:11:36 +08:00
parent e0821c9ed2
commit 86495e561a
5 changed files with 739 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh
while :; do
temp=$(awk '{printf "%d", $1/1000}' /sys/class/thermal/thermal_zone0/temp 2>/dev/null || echo n/a)
datetime=$(date +'%a %d %b %T')
echo " ${temp}C | ${datetime}"
sleep 1
done