Files
quectel-rgmii-toolkit/ipk-source/luci-theme-argon/root/etc/uci-defaults/30_luci-theme-argon
Cameron Thompson 3f05beee37 Add Luci Theme argon and app
- Also added missing depends from source: https://dl.openwrt.ai/packages-24.10/aarch64_cortex-a53/

- Argon theme and app source:
https://github.com/jerrykuku/luci-theme-argon
2025-02-18 21:39:32 -05:00

13 lines
231 B
Bash

#!/bin/sh
if [ "$PKG_UPGRADE" != 1 ]; then
uci get luci.themes.Argon >/dev/null 2>&1 || \
uci batch <<-EOF
set luci.themes.Argon=/luci-static/argon
set luci.main.mediaurlbase=/luci-static/argon
commit luci
EOF
fi
exit 0