I would like to disable suspend when I close the laptop lid.
/etc/acpi/events/lm_lid
Code:
event=button[ /]lid
action=/etc/acpi/actions/lm_lid.sh %e
/etc/acpi/actions/lm_lid.sh
Code:
#! /bin/sh
test -f /usr/sbin/laptop_mode || exit 0
# lid button pressed/released event handler
/usr/sbin/laptop_mode auto
Following this logic in those files I thought I could edit something obvious in a text file but I don not see any options to disable this behavior. I think laptop-mode.conf file might contain a lsoution but I am unsure after looking at it contents.
Thanks