Complete LuCI theme implementation with: - CRT P31 phosphor green color scheme with scanline effects - Header, footer, and sysauth login page templates - Cascading CSS with CRT glow and phosphor effects - CRT engine JS for terminal-style animations - CRT components JS for reusable UI components - UCI defaults to set as default LuCI theme - Updated Makefile for proper asset installation Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
# SecuBox CRT P31 Theme - UCI Defaults
|
|
# Set SecuBox theme as default LuCI theme
|
|
|
|
uci -q batch <<-EOF
|
|
set luci.main.mediaurlbase='/luci-static/secubox'
|
|
commit luci
|
|
EOF
|
|
|
|
exit 0
|