Browse Source

fix: changed minimum brightness from 0 (black screen) to 1 (darkest possible readable screen)

pull/313/head
James Appleton 2 years ago
parent
commit
76765c119d
  1. 4
      config/hypr/scripts/Brightness.sh

4
config/hypr/scripts/Brightness.sh

@ -33,7 +33,7 @@ notify_user() {
# Change brightness
change_backlight() {
brightnessctl set "$1" && get_icon && notify_user
brightnessctl set "$1" -n && get_icon && notify_user
}
# Execute accordingly
@ -50,4 +50,4 @@ case "$1" in
*)
get_backlight
;;
esac
esac

Loading…
Cancel
Save