Suspend on LID close: Difference between revisions
No edit summary |
m (Reformat) |
||
Line 1: | Line 1: | ||
This article explains how to make your laptop go to Suspend when closing the LID. | This article explains how to make your laptop go to Suspend when closing the LID. | ||
== Busybox acpid == | |||
This can be done via <code>acpid</code> with a hook in {{path|/etc/acpi/LID/00000080}}: | This can be done via <code>acpid</code> with a hook in {{path|/etc/acpi/LID/00000080}}: | ||
''' | # '''with pm-utils:''' {{cmd|apk add pm-utils}} {{cat|/etc/acpi/LID/00000080|#!/bin/sh | ||
{{cmd|apk add pm-utils}} | |||
{{cat|/etc/acpi/LID/00000080|#!/bin/sh | |||
exec pm-suspend | exec pm-suspend | ||
}} | }} | ||
# '''or with raw variant''': {{cat|/etc/acpi/LID/00000080|#!/bin/sh | |||
''' | |||
{{cat|/etc/acpi/LID/00000080|#!/bin/sh | |||
echo mem > /sys/power/state | echo mem > /sys/power/state | ||
}} | }} |
Revision as of 20:39, 11 September 2022
This article explains how to make your laptop go to Suspend when closing the LID.
Busybox acpid
This can be done via acpid
with a hook in /etc/acpi/LID/00000080:
- with pm-utils:
apk add pm-utils
Contents of /etc/acpi/LID/00000080
#!/bin/sh exec pm-suspend - or with raw variant:
Contents of /etc/acpi/LID/00000080
#!/bin/sh echo mem > /sys/power/state
Make the hook executable:
chmod +x /etc/acpi/LID/00000080
That should be it. To make sure that the acpid daemon is running, execute:
/etc/init.d/acpid start