MyFirstBrain/Technik/Linux-Allgemein.md
2025-04-28 09:45:05 +02:00

46 lines
724 B
Markdown

---
created: 2025-04-10T18:03
updated: 2025-04-28T09:45
---
### 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
```
** Nemo DateiManager in Cinnamon **
Einhängen einer Samba Freigabe
```code
nemo smb://ralfk@192.168.132.19
```
#### Wireguard VPN Conf Importieren
```bash
nmcli connection import type wireguard file ./wg-lg-zuhause.conf
```