9468f9b060
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
8 lines
184 B
Bash
Executable file
8 lines
184 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if grep -q closed /proc/acpi/button/lid/*/state; then
|
|
sleep 3
|
|
su nico -c "DISPLAY=:0.0 xset dpms force off"
|
|
else
|
|
su nico -c "DISPLAY=:0.0 xset dpms force on"
|
|
fi
|