जवाबों:
यह काफी सरल है। जब आप पावर बटन दबाते हैं तो ACPI इवेंट स्क्रिप्ट को ट्रिगर करता है /etc/acpi/powerbtn.sh
।
आप इसे केवल shutdown -h now
पहली चीज के रूप में चलाने के लिए संपादित कर सकते हैं, इसलिए ऐसा दिखता है:
#!/bin/sh
# /etc/acpi/powerbtn.sh
# Initiates a shutdown when the power putton has been
# pressed.
/sbin/shutdown -h now "Power button pressed"
exit 0
# leave the old code below (in case you want to revert!)