Three conky panels (main, dayz, doge) plus all widgets, NUT config templates, and the systemd timer that drives the qwen2.5:1.5b vibe report on maeth-storage. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
9 lines
298 B
Bash
Executable File
9 lines
298 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
sleep "${HA_WIDGET_START_DELAY:-3}"
|
|
pkill -u "$USER" -f "conky -c $HOME/.config/conky/" 2>/dev/null || true
|
|
conky -c "$HOME/.config/conky/dayz.conf" -d
|
|
conky -c "$HOME/.config/conky/doge.conf" -d
|
|
exec conky -c "$HOME/.config/conky/home-assistant-energy.conf"
|