I had a problem when trying to install the Argon theme for the openwrt graphical interface, I followed the following script and had the following problem:
opkg update
opkg install luci-compat
opkg install luci-lib-ipkg
mkdir -p /tmp/okibcn
cd /tmp/okibcn
URL=$(wget -q https://api.github.com/repos/jerrykuku/luci-theme-argon/releases/latest -O - | awk -F \" -v RS="," '/browser_download_url/ && /-argon/ {print $(NF-1)}')
wget $URL -O $(basename $URL)
opkg install $(basename $URL)
rm -rf /tmp/okibcn/*
URL=$(wget -q https://api.github.com/repos/jerrykuku/luci-app-argon-config/releases/latest -O - | awk -F \" -v RS="," '/browser_download_url/ && /-config/ {print $(NF-1)}')
wget $URL -O $(basename $URL)
opkg install $(basename $URL)
cd
rm -rf /tmp/okibcn
That's no an official Openwrt repo, ask the repo/package maintainer.
3 Likes
dr191
April 3, 2024, 5:15pm
3
Hi,
Anyway, it's partially broken with openwrt 23. Some menus are missing.
1 Like
dnd
April 3, 2024, 5:49pm
4
Hi,
minacabu:
/releases/latest
Check https://github.com/jerrykuku/luci-theme-argon/releases ,
the "latest" release is v1.8.3 for LEDE 18.06.
If you are installing on a newer version of OpenWrt, you need a newer version of Argon as well.
https://github.com/jerrykuku/luci-theme-argon/releases/tag/v2.3.1 should work better.
EDIT:
I actually used package feeds from here to install it: https://github.com/fantastic-packages/packages/tree/gh-pages#readme
1 Like
Hello everyone, I solved the problem by installing luci-theme-material. It changes the web interface and solves my problem. Although I didn't understand the clash when trying to install argon, which I've managed to do before (I can't remember how)
system
Closed
April 14, 2024, 2:48am
6
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.