added LaptopSetup

This commit is contained in:
2023-10-17 15:37:21 +02:00
parent d9e33fc1de
commit 6f9e095d7f
2 changed files with 26 additions and 0 deletions

25
docs/LaptopSetup.md Normal file
View File

@ -0,0 +1,25 @@
# LaptopSetup
General Tips and tricks for setting up Laptops in particular. Assuming Arch Linux/systemd.
## Power/Hibernation
We want to not edit pacman-provided files but provide drop-ins.
Hence create the folder `/etc/systemd/logind.conf.d` if not already present.
All the following settings will be written into `/etc/systemd/logind.conf.d/logind.conf`
### Let DWM handle PowerOff
```conf
[Login]
HandlePowerKey=ignore
```
### Hibernate on Lid close
```conf
[Login]
HandleLidSwitch=hibernate
HandleLidSwitchExternalPower=hibernate
```