- Add header.ut and footer.ut ucode templates (required by modern LuCI) - Remove old Lua templates (incompatible with OpenWrt 24.10) - Add mobile.css for responsive styling - Update UCI defaults to register theme in luci.themes section - Bump PKG_RELEASE to 3 The theme now properly loads via LuCI's theme system with: - CRT P31 phosphor green cascade.css - crt-engine.js for scanline effects - Proper ucode template integration Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
249 B
Bash
Executable File
12 lines
249 B
Bash
Executable File
#!/bin/sh
|
|
# SecuBox CRT P31 Theme - UCI Defaults
|
|
# Register and set SecuBox theme as default LuCI theme
|
|
|
|
uci -q batch <<-EOF
|
|
set luci.themes.SecuBox='/luci-static/secubox'
|
|
set luci.main.mediaurlbase='/luci-static/secubox'
|
|
commit luci
|
|
EOF
|
|
|
|
exit 0
|