Há uma opção no systemd que permite impedir que seu laptop entre no modo de suspensão quando você fecha a tampa.
Aqui estão os passos para usar essa opção:
-
Abra o arquivo /etc/systemd/logind.conf com direitos de administrador
-
Adicione uma nova linha no final do arquivo:
HandleLidSwitch = ignorar
Ou em um comando no seu terminal:
echo "HandleLidSwitch=ignore" | sudo tee -a /etc/systemd/logind.conf
Veja o que o manual logind.conf diz ( source ):
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= and HandleLidSwitch= default to suspend. HandleHibernateKey= defaults to hibernate.