如何设置 LXDE(Linux 桌面环境)以在按下计算机电源按钮后使 PC 休眠?
答案1
您可以在没有 LXDE(或任何其他)GUI 支持的情况下执行此操作。只需运行 acpid,它默认会执行此操作。至少在我的系统上是这样的。
答案2
当您按下电源按钮时,ACPI 事件会触发 /etc/acpi/powerbtn.sh 上的脚本。
您可以对其进行编辑,使其首先运行shutdown -h,如下所示:
#!/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!)