11 lines
287 B

#! /bin/bash
while true;
do
f=$(cat /sys/class/thermal/thermal_zone0/temp)
t=$(echo $f | cut -b -2).$(echo $f | cut -b 3-)°C
d=$(date '+%a %b %d, %H:%M')
p=$(pacman -Qu | grep -v "\[ignored\]" | wc -l)
xsetroot -name " Pkgs: ${p} | ${d} | ${t}"
sleep 60;
done;