blob: 256f354bc36a19c48860b754836d029f6c091aeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
#!/bin/bash
# Default values
DEFAULT_MAX_BRIGHTNESS_SENSOR_VALUE=100
DEFAULT_MIN_BRIGHTNESS_SENSOR_VALUE=0
DEFAULT_UPDATE_INTERVAL_S=0.25
DEFAULT_MIN_BRIGHTNESS_DELTA=5
DEFAULT_MAX_BRIGHTNESS_DELTA=1
# Source the main configuration file if it exists
source_config() {
MAIN_CONFIG_FILE="/etc/conf.d/auto-brightness.conf"
if [ -f "$MAIN_CONFIG_FILE" ]; then
source "$MAIN_CONFIG_FILE"
fi
}
# Function to source individual configuration files in /etc/conf.d/auto-brightness.d/
source_individual_configs() {
CONFIG_DIR="/etc/conf.d/auto-brightness.d/"
if [ -d "$CONFIG_DIR" ]; then
for config_file in "$CONFIG_DIR"/*.conf; do
[ -f "$config_file" ] && source "$config_file"
done
fi
}
# Functions
get_max_brightness() {
# Set max_brightness, fallback to the device's max_brightness if not set or -1
if [ -z "$max_brightness" ] || [ "$max_brightness" -eq -1 ]; then
echo $(get_device_max_brightness)
fi
echo $max_brightness
}
get_device_max_brightness() {
echo $(cat ${brightness_path}/max_brightness)
}
get_brightness() {
echo $(cat ${brightness_path}/brightness)
}
get_illuminance() {
echo $(cat ${sensor_path}/in_illuminance_raw)
}
brightness_percentage() {
local current=$1
local maximum=$2
maximum=${maximum:-$(get_device_max_brightness)}
echo "$(awk "BEGIN {print (100 * $current / $maximum)}")%"
}
find_iio_device_with_illuminance() {
for device in /sys/bus/iio/devices/iio:device*; do
if [ -f "$device/in_illuminance_raw" ]; then
echo "$device"
return 0
fi
done
echo "No device with in_illuminance_raw found."
return 1
}
find_backlight_device() {
for device in /sys/class/backlight/*; do
if [ -f "$device/brightness" ]; then
echo "$device"
return 0
fi
done
echo "No device with brightness found."
return 1
}
# Function to test write access to brightness setting
test_write_access() {
local current_brightness=$(get_brightness)
if ! echo $current_brightness | tee ${brightness_path}/brightness > /dev/null 2>&1; then
echo "Error: Unable to write to ${brightness_path}/brightness."
echo "Please ensure the script has the necessary permissions to write to the brightness setting."
echo "You can run the script as root or set up a proper udev rule to allow non-root users to write to the brightness setting."
exit 1
fi
}
# Function to set smoothly set brightness
set_brightness_smooth() {
local target_brightness=$1
local target=$target_brightness
if [ $max_brightness_delta -ne -1 ]; then
if [ $(($target_brightness - $current_brightness)) -gt $max_brightness_delta ]; then
target=$((current_brightness + $max_brightness_delta))
elif [ $(($current_brightness - $target_brightness)) -gt $max_brightness_delta ]; then
target=$((current_brightness - $max_brightness_delta))
fi
fi
#echo "Setting brightness to $target"
echo $target | tee ${brightness_path}/brightness > /dev/null
}
# Function to read configuration
read_config() {
local old_min_brightness_delta=${min_brightness_delta:--1}
local old_max_brightness_delta=${max_brightness_delta:--1}
local old_max_brightness=${max_brightness:--1}
local old_brightness_path=${brightness_path:-""}
local old_sensor_path=${sensor_path:-""}
source_config
source_individual_configs
# Set the configuration values, using defaults if not set in the config file or individual files
max_brightness_sensor_value=${max_brightness_sensor_value:-$DEFAULT_MAX_BRIGHTNESS_SENSOR_VALUE}
min_brightness_sensor_value=${min_brightness_sensor_value:-$DEFAULT_MIN_BRIGHTNESS_SENSOR_VALUE}
update_interval_s=${update_interval_s:-$DEFAULT_UPDATE_INTERVAL_S}
min_brightness_delta=${min_brightness_delta:-$DEFAULT_MIN_BRIGHTNESS_DELTA}
max_brightness_delta=${max_brightness_delta:-$DEFAULT_MAX_BRIGHTNESS_DELTA}
refresh_config_interval_s=$(if [ $(awk "BEGIN {print ($update_interval_s > 1)}") -eq 1 ]; then echo $update_interval_s; else echo 1; fi)
refresh_config_count_max=$(awk "BEGIN {print ($refresh_config_interval_s / $update_interval_s)}")
refresh_config_count=0
# Check if config values have changed, and if so, continue the auto-sensor if it was paused
if [ $old_min_brightness_delta -ne $min_brightness_delta ] || [ $old_max_brightness_delta -ne $max_brightness_delta ] || [ $old_max_brightness -ne $max_brightness ] || [[ $old_brightness_path != $brightness_path ]] || [[ $old_sensor_path != $sensor_path ]]; then
# Set paths, using explicit values from config or finding them
brightness_path=${brightness_path:-$(find_backlight_device)}
sensor_path=${sensor_path:-$(find_iio_device_with_illuminance)}
if [ $old_max_brightness -ne $max_brightness ] || [[ $old_brightness_path != $brightness_path ]]; then
max_brightness=$(get_max_brightness)
fi
last_brightness=$(get_brightness)
if [ ! -z $backoff ] && [ $backoff -eq 1 ]; then
echo "(auto-brightness/resume) Config has changed";
backoff=0
fi
fi
}
read_config
# Exit if devices are not found
if [[ $brightness_path == "No device with brightness found." || $sensor_path == "No device with in_illuminance_raw found." ]]; then
echo "Required device not found. Exiting."
exit 1
fi
max_brightness=$(get_max_brightness)
# Test write access
test_write_access
last_brightness=$(get_brightness)
backoff=0
while true; do
if [ $refresh_config_count -eq $refresh_config_count_max ]; then
read_config
fi
current_brightness=$(get_brightness)
illuminance=$(get_illuminance)
# check if brightness has changed unexpectedly
if [ $current_brightness -lt $((last_brightness - min_brightness_delta)) ] || [ $current_brightness -gt $((last_brightness + min_brightness_delta)) ]; then
if [ $backoff -eq 0 ]; then
echo "(auto-brightness/pause) Brightness was changed externally. Backing off until it's back in range."
backoff=1
fi
sleep $update_interval_s
refresh_config_count=$((refresh_config_count + 1))
continue
fi
if [ $backoff -eq 1 ]; then
echo "(auto-brightness/resume) Brightness is back in range."
backoff=0;
fi
# Clamp illuminance value
if [ $illuminance -lt $min_brightness_sensor_value ]; then sensor=$min_brightness_sensor_value; fi
if [ $illuminance -gt $max_brightness_sensor_value ]; then sensor=$max_brightness_sensor_value; fi
target_brightness=$((illuminance * max_brightness / max_brightness_sensor_value))
if [ $current_brightness -lt $((target_brightness - min_brightness_delta)) ] || [ $current_brightness -gt $((target_brightness + min_brightness_delta)) ]; then
set_brightness_smooth $target_brightness
last_brightness=$(get_brightness)
sleep 0.01
else
last_brightness=$(get_brightness)
sleep $update_interval_s
refresh_config_count=$((refresh_config_count + 1))
fi
done
|