mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 11:01:50 +00:00
10 lines
145 B
Text
10 lines
145 B
Text
|
#!/bin/sh
|
||
|
|
||
|
uci get luci.themes.Design >/dev/null 2>&1 || \
|
||
|
uci batch <<-EOF
|
||
|
set luci.themes.Design=/luci-static/design
|
||
|
commit luci
|
||
|
EOF
|
||
|
|
||
|
exit 0
|