Make “Close Laptop Lid” Really “Do Nothing” in Kali Linux

I struggled with the GUI’s power settings as the “do nothing” seems not working. Then I went on to meddle with the /etc/systemd/logind.conf file. Once you’ve VI’ed it, please uncomment #HandleLidSwitch=suspend and change it to HandleLidSwitch=ignore

Hence “before”:

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.
#
# See logind.conf(5) for details

[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
#HandleLidSwitch=suspend
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=yes

vs “after”:

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.
#
# See logind.conf(5) for details

[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
HandleLidSwitch=ignore
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=yes

Once you’ve saved the changes and exited VI, please execute below command to reboot relevant power management service (sudo it if you are asked to):

systemctl restart systemd-logind

Then I closed the really really old IBM ThinkPad T43 laptop lid and the system refused to go to sleep at alst.

Courtesy to below article for knowledge sharing:

https://forums.kali.org/showthread.php?26887-SOLVED-Kali-Linux-laptop-lid-close-actions


Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *