MyFirstBrain/Technik/Linux-Allgemein.md

29 lines
429 B
Markdown
Raw Normal View History

2025-04-04 08:47:57 +02:00
### 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
2025-04-10 22:35:07 +02:00
```
#### Brightness auf dem Display einstellen
```Code
xrandr --output eDP-1 --brightness 0.5
```