- dashboard.py: plugin-based renderer with 4x4 grid layout - admin.py: web UI with layout editor + plugin configs - layout.py: pack algorithm, item placement, grid system - plugins/: clock, weather, system, spotify, strava, gmail, minimax, hello - network_watchdog.py: WiFi AP/client mode management - waveshare_epd_init.py: vendor driver stub
10 lines
240 B
Bash
10 lines
240 B
Bash
#!/bin/bash
|
|
cd /home/koptikp/epaper-dashboard/port
|
|
pkill -f dashboard.py 2>/dev/null
|
|
sleep 1
|
|
nohup env python3 dashboard.py > /tmp/dashboard.log 2>&1 &
|
|
echo "dashboard pid: $!"
|
|
sleep 2
|
|
echo "--- log preview ---"
|
|
head -20 /tmp/dashboard.log
|