diff options
| author | James Appleton <james.appleton01@gmail.com> | 2024-05-29 18:22:25 +1000 |
|---|---|---|
| committer | James Appleton <james.appleton01@gmail.com> | 2024-05-29 18:37:33 +1000 |
| commit | 76765c119d0512a7d2ed60b69ec1c020ed5e793b (patch) | |
| tree | a6679be169e1ac4ec6339e126cdc491947345d37 /config/hypr | |
| parent | 2e67eba3d18ef4d7ca74b2036a0ec0020825bc86 (diff) | |
fix: changed minimum brightness from 0 (black screen) to 1 (darkest possible readable screen)
Diffstat (limited to 'config/hypr')
| -rwxr-xr-x | config/hypr/scripts/Brightness.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/hypr/scripts/Brightness.sh b/config/hypr/scripts/Brightness.sh index 7d43f570..8f9fbf22 100755 --- a/config/hypr/scripts/Brightness.sh +++ b/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
\ No newline at end of file +esac |
