forked from ziitar/build-openwrt-with-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiy.sh
More file actions
20 lines (16 loc) · 1.1 KB
/
Copy pathdiy.sh
File metadata and controls
20 lines (16 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 请在下方输入自定义命令(一般用来安装第三方插件)(可以留空)
# 编辑默认的lan口ip地址
sed -i 's/192.168.1.1/192.168.10.1/g' package/base-files/files/bin/config_generate
# 编辑默认的主题
sed -i 's/luci-theme-bootstrap/luci-theme-argon/g' feeds/luci/collections/luci/Makefile
# 编辑默认的luci显示的固件名称
#sed -i 's/OpenWrt/ManzanaWrt/g' package/base-files/files/bin/config_generate
#sed -i 's/ImmortalWrt/PeraWrt/g' package/base-files/files/bin/config_generate
# 添加额外的软件包,echo 方式和git clone 方式二选一即可
#echo 'src-git kenzok8 https://github.com/kenzok8/openwrt-packages' >>feeds.conf.default
#echo 'src-git small https://github.com/kenzok8/small' >>feeds.conf.default
echo 'src-git UA3F https://github.com/SunBK201/UA3F.git' >>feeds.conf.default
#git clone https://github.com/kenzok8/openwrt-packages.git package/openwrt-packages
#git clone https://github.com/kenzok8/small.git package/small
#git clone https://github.com/SunBK201/UA3F.git package/UA3F
git clone https://github.com/stevenjoezhang/luci-app-adguardhome.git package/ADGH