blob: a39b85d9e73b1e2d7381a823fb3a7c6a0e8d583c (
plain)
1
2
3
4
|
brightness=$(cat /sys/class/backlight/acpi_video0/actual_brightness)
temp=$(hyprctl hyprsunset temperature 2>/dev/null | grep -o '[0-9]\+')
if [ -z "$temp" ]; then temp=6000; fi
echo "$brightness $temp"
|