mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 02:51:50 +00:00
9 lines
145 B
Bash
9 lines
145 B
Bash
#!/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
|