Update: brightness script for external monitors
This commit is contained in:
parent
0902684746
commit
53f7255d4e
|
@ -1,28 +1,52 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# Locks the screen and lowers-brightness. Restores brightness on unlock
|
# Locks the screens and lowers-brightness. Restores brightness on unlock
|
||||||
declare brightness_lvl;
|
|
||||||
|
|
||||||
if ! command -v ddcutil &>/dev/null && command -v light &>/dev/null; then
|
# Defaults for levels when restored
|
||||||
lvl="$(light -G)"
|
declare light_restore=3
|
||||||
|
declare ddc_restore=3
|
||||||
|
|
||||||
(swaylock; light -S "$lvl") &
|
# Levels when dimmed
|
||||||
light -S 1
|
declare -ri light_dim=1
|
||||||
elif command -v ddcutil &>/dev/null; then
|
declare -ri ddc_dim=1
|
||||||
lvl="$(ddcutil getvcp 10 | awk '{
|
|
||||||
gsub(" ",""); # Remove spaces
|
|
||||||
split($0, a, "=");
|
|
||||||
split(a[2], a, ",");
|
|
||||||
print a[1]
|
|
||||||
}')"
|
|
||||||
|
|
||||||
if [[ "$lvl" =~ ^[0-9]+$ ]]; then
|
get_brightness() {
|
||||||
(swaylock; ddcutil setvcp 10 "$lvl") &
|
local lvl
|
||||||
ddcutil setvcp 10 1
|
|
||||||
else
|
if command light &>/dev/null; then
|
||||||
swaylock
|
lvl="$(light -G)"
|
||||||
|
|
||||||
|
if [[ $lvl =~ ^[0-9]+(\.[0-9]+)?$ ]]; then
|
||||||
|
light_restore="$lvl"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
swaylock
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
if command ddcutil &>/dev/null; then
|
||||||
|
lvl="$(ddcutil getvcp 10 | awk '{
|
||||||
|
gsub(" ",""); # Remove spaces
|
||||||
|
split($0, a, "=");
|
||||||
|
split(a[2], a, ",");
|
||||||
|
print a[1]
|
||||||
|
}')"
|
||||||
|
|
||||||
|
if [[ $lvl =~ ^[0-9]+$ ]]; then
|
||||||
|
ddc_restore="$lvl"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
set_brightness() {
|
||||||
|
local -r light_lvl="$1"
|
||||||
|
local -r ddc_lvl="$2"
|
||||||
|
|
||||||
|
if command light &>/dev/null; then
|
||||||
|
light -S "$light_lvl"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command ddcutil &>/dev/null; then
|
||||||
|
ddcutil setvcp 10 "$ddc_lvl"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
get_brightness
|
||||||
|
(swaylock; set_brightness $light_restore $ddc_restore) &
|
||||||
|
set_brightness $light_dim $ddc_dim
|
||||||
|
|
Loading…
Reference in a new issue