updating lockmon

This commit is contained in:
Siina Mashek 2022-12-14 15:17:10 +02:00
parent 492e4719fa
commit 655f929f76

View File

@ -4,8 +4,8 @@ bus-monitor --session "type='signal',interface='org.freedesktop.ScreenSaver'" |
while read x; do
case "$x" in
# Simulate monitor being off
*"boolean true"*) xrandr --output HDMI-A-1 --brightness 0.0;;
*"boolean true"*) xrandr --output HDMI-0 --brightness 0.0;;
# Restore monitor brightness
*"boolean false"*) xrandr --output HDMI-A-1 --brightness 1.0;;
*"boolean false"*) xrandr --output HDMI-0 --brightness 1.0;;
esac
done