blob: ccb2bc26ce0329899879b74c9c0083926977dd98 (
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 "$brightness $temp"
|