Introduce a new theme modelled after the logo guidelines published in https://openwrt.org/_media/docs/guide-graphic-designer/openwrt-logo-usage-guidelines.pdf Signed-off-by: Jo-Philipp Wich <jo@mein.io>
11 lines
201 B
Bash
Executable file
11 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
|
uci batch <<-EOF
|
|
set luci.themes.OpenWrt2020=/luci-static/openwrt2020
|
|
set luci.main.mediaurlbase=/luci-static/openwrt2020
|
|
commit luci
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|