LINUX.ORG.RU

Кнопка power


0

0

Где прописать, что бы при нажатии на корпусе кнопки power кампутер выключался, а то сейчас он засыпает.

anonymous

$ cat /etc/acpi/powerbtn.sh 
#!/bin/sh
# /etc/acpi/powerbtn.sh
# Initiates a shutdown when the power putton has been
# pressed.

if ps -Af | grep -q '[k]desktop' && test -f /usr/bin/dcop
then
    dcop --all-sessions --all-users ksmserver ksmserver logout 0 2 0 && exit 0
else
    /sbin/shutdown -h now "Power button pressed"
fi

sdio ★★★★★
()
Ответ на: комментарий от sdio

$ cat /etc/acpi/events/powerbtn 
# /etc/acpi/events/powerbtn
# This is called when the user presses the power button and calls
# /etc/acpi/powerbtn.sh for further processing.

# Optionally you can specify the placeholder %e. It will pass
# through the whole kernel event message to the program you've
# specified.

# We need to react on "button power.*" and "button/power.*" because
# of kernel changes.

event=button[ /]power
action=/etc/acpi/powerbtn.sh

sdio ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.