2022-03-28 23:53:26 +00:00
|
|
|
#!/bin/bash
|
2022-02-05 14:23:32 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
|
|
|
### Variables may need to be device specific here.
|
|
|
|
BRIGHTNESS=$(get_setting system.brightness)
|
|
|
|
if [[ ! "${BRIGHTNESS}" =~ [0-9] ]]
|
|
|
|
then
|
|
|
|
BRIGHTNESS=${DEVICE_BRIGHTNESS}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Ensure user doesn't get "locked out" with super low brightness
|
|
|
|
if [[ "${BRIGHTNESS}" -lt "3" ]]
|
|
|
|
then
|
|
|
|
BRIGHTNESS=3
|
|
|
|
fi
|
2022-09-05 10:58:27 +00:00
|
|
|
|
2022-10-02 00:22:43 +00:00
|
|
|
printf "%.0f" $(echo "${BRIGHTNESS}") > /sys/class/backlight/$(brightness device)/brightness
|