Suspend on LID close: Difference between revisions

From Alpine Linux
mNo edit summary
No edit summary
Line 18: Line 18:
{{cmd|chmod +x /etc/acpi/LID/00000080}}
{{cmd|chmod +x /etc/acpi/LID/00000080}}


And that should be it. Make sure that the acpid daemon is running:
That should be it. To make sure that the acpid daemon is running, execute:
{{cmd|/etc/init.d/acpid start}}
{{cmd|/etc/init.d/acpid start}}



Revision as of 05:08, 11 August 2021

This article explains how to make your laptop go to Suspend when closing the LID.

This can be done via acpid with a hook in /etc/acpi/LID/00000080:

a) with pm-utils:

apk add pm-utils

Contents of /etc/acpi/LID/00000080

#!/bin/sh exec pm-suspend

b) with this 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