Updating machine name and adding lock screen script for plasma
This commit is contained in:
parent
6565eafc58
commit
bea8cd8f88
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
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;;
|
||||||
|
# Restore monitor brightness
|
||||||
|
*"boolean false"*) xrandr --output HDMI-A-1 --brightness 1.0;;
|
||||||
|
esac
|
||||||
|
done
|
Loading…
Reference in New Issue