Compare commits

...

2 Commits

Author SHA1 Message Date
Ralf Koop
c2173bc908 Merge branch 'main' of https://portal.ralfkoop.de/ralfk/MyFirstBrain 2025-04-04 08:49:55 +02:00
Ralf Koop
07f108f284 . 2025-04-04 08:47:57 +02:00
2 changed files with 23 additions and 2 deletions

View File

@ -26,8 +26,6 @@ Vmwaretools :
NgixProxyManager Host
192.168.132.19:7005
Advanced :![[Heute 2025-01-15 22.47.41.excalidraw]]

View File

@ -0,0 +1,23 @@
### 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
```