mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-14 12:24:33 +08:00
13 lines
235 B
Bash
Executable File
13 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
|
uci get luci.themes.Shadcn >/dev/null 2>&1 || \
|
|
uci batch <<-EOF
|
|
set luci.themes.Shadcn=/luci-static/shadcn
|
|
set luci.main.mediaurlbase=/luci-static/shadcn
|
|
commit luci
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|