MyFirstBrain/Technik/Linux-Allgemein.md
2025-04-11 09:01:14 +02:00

33 lines
489 B
Markdown

---
created: 2025-04-10T18:03
updated: 2025-04-11T09:01
---
### Linux Configurationen
##### Scripte for und nach Bereitschaft ausführen :
Ordner :
/usr/lib/systemd/system-sleep oder
/usr/systemd/system-sleep
Script
```Command
case $1/$2 in
pre/*)
echo "Going to $2..."
rfkill block all
;;
post/*)
echo "Waking up from $2..."
rfkill unblock all
;;
esac
```
#### Brightness auf dem Display einstellen
```Code
xrandr --output eDP-1 --brightness 0.5
```