为openwrt更换默认主题。
自己编译了openwrt固件,朋友试用之后,说web管理界面太丑了……
我是实用派,一开始完全没在意外观的问题。听朋友这么一说决定给换个默认主题。
看了一下目前lean使用的主流界面是argon
,就决定用它了。
https://github.com/jerrykuku/luci-theme-argon.git
根据argon官方文档的说法,他的主分支是跟随openwrt官方版本的。而lean目前只支持18.06这个分支。
首先进入lede的根目录中,拉取最新的代码:
cd lede
rm -rf package/lean/luci-theme-argon
git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git package/lean/luci-theme-argon
替换默认主题:
sed -i 's/luci-theme-bootstrap/luci-theme-argon/' feeds/luci/collections/luci/Makefile
因为个人有点小洁癖,不喜欢带不需要的东西,所以只想带一个主题。运行:
make menuconfig
进入LUCI->Theme
,选中Luci-theme-argon
,并去掉原来默认的luci-theme-bootstrap
主题。
接下来正常编译就行了。