blob: cbd597e8a7d6b6ef0705ce3889a1bf649cc2f3d2 (
plain)
1
2
3
4
|
brightness=$(brightnessctl | grep 'Current brightness' | grep -o '[0-9]\+' | head -n 1)
temp=$(hyprctl hyprsunset temperature 2>/dev/null | grep -o '[0-9]\+')
if [ -z "$temp" ]; then temp=6000; fi
echo "Photons:<span color='#FFA500'>$brightness</span>(<span color='#FF4040'>$temp</span>K)"
|