7 lines
130 B
Text
7 lines
130 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if grep -q closed /proc/acpi/button/lid/*/state; then
|
||
|
sleep 3
|
||
|
su nico -c "DISPLAY=:0.0 xset dpms force off"
|
||
|
fi
|