This commit is contained in:
Andras Schmelczer 2026-04-03 11:38:44 +01:00
parent 36d975545b
commit 76ccefa929
2 changed files with 21 additions and 2 deletions

View file

@ -12,9 +12,20 @@ sudo systemctl mask swap.target
sudo systemctl disable --now bluetooth
```
Execute `sudo crontab -e` and add
```
@reboot /usr/sbin/iw wlan0 set power_save off
*/5 * * * * /home/andras/frame/wifi-check.sh > /home/andras/wifi.log 2>&1
```
Execute `crontab -e` and add
```
*/15 * * * * cd ~/frame && python3 display.py -o 90 >> ~/frame.log 2>&1
```
Reduce journald writes
Edit /etc/systemd/journald.conf:
```
Storage=volatile
```
```