Thinkpad suspend button with lubuntu 18.04
I use Fn-F4 to put my Thinkpad T500 to sleep. So far that worked out of the box with all Linux Versions that I tried. But not this time with lubuntu 18.04. I fixed it like this:
2 new files :
/etc/acpi/events/lenovo-sleep
event=button/sleep SBTN 00000080 00000000 K
action=/etc/acpi/lenovo-sleep.sh
/etc/acpi/lenovo-sleep.sh
#!/bin/sh
pm-suspend
… and 3 commands:
sudo chmod 755 lenovo-sleep.sh
sudo /etc/init.d/acpid restart
sudo apt install pm-utils
Leave a Reply