Blame samples/power.sh

Packit a94d48
#!/bin/bash
Packit a94d48
# This script is triggered by the "power" configuration file.  This is
Packit a94d48
# described in the acpid man page.
Packit a94d48
Packit a94d48
# A much more comprehensive power button handler is provided in the
Packit a94d48
# powerbtn directory in this samples directory.  If you run gnome or KDE,
Packit a94d48
# it's better to use that one instead of this one.
Packit a94d48
Packit a94d48
/sbin/shutdown -h now "Power button pressed"
Packit a94d48