Você precisa configurar logind.conf
- isso não desabilitaria a suspensão, apenas informaria a ignorar a troca de tampa ou apenas bloquearia a tela.
Isso também substituiria as configurações de energia de qualquer usuário, mas funcionará na tela de login ou quando estiver sendo desligado, quando estiver fora da sessão do usuário e não for afetado pelas configurações de energia do usuário.
Você pode configurá-lo via:
sudo nano /etc/systemd/logind.conf
e altere o HandleLidSwitch=
linha para:
HandleLidSwitch=ignore
Aqui está um qoute de uma página de manual - note que ele pode receber outros valores como lock
, poweroff
etc.
HandlePowerKey=, HandleSuspendKey=, HandleHibernateKey=, HandleLidSwitch=
Controls whether logind shall handle the system power and sleep keys and the lid switch to trigger actions such as system power-off or suspend. Can be one of "ignore", "poweroff", "reboot", "halt", "kexec", "suspend", "hibernate", "hybrid-sleep" and "lock". If "ignore", logind will never handle these keys. If "lock", all running sessions will be screen-locked; otherwise, the specified action will be taken in the respective event. Only input devices with the "power-switch" udev tag will be watched for key/lid switch events.
HandlePowerKey=
defaults to "poweroff".HandleSuspendKey=
andHandleLidSwitch=
defaults to "suspend".HandleHibernateKey=
defaults to "hibernate".
A página de manual é aqui