mirror of
https://github.com/kiddin9/openwrt-packages.git
synced 2025-01-09 10:27:29 +08:00
🎨 Sync 2024-07-29 17:08:00
This commit is contained in:
parent
e255685ca2
commit
459fb15666
@ -17,4 +17,10 @@
|
||||
</div>
|
||||
<hr/>
|
||||
|
||||
## Install via Terminal
|
||||
```
|
||||
curl -s https://raw.githubusercontent.com/animegasan/luci-app-alpha-config/master/install.sh | sh
|
||||
```
|
||||
|
||||
# Preview
|
||||
![image](https://github.com/user-attachments/assets/25f59fae-00e1-4c98-9be4-de6ce927ac15)
|
||||
|
24
luci-app-alpha-config/install.sh
Normal file
24
luci-app-alpha-config/install.sh
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
apk_name="luci-app-alpha-config"
|
||||
version="2.1"
|
||||
|
||||
echo "Updating packages"
|
||||
if ! opkg update; then
|
||||
echo "Failed to update OPKG"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Downloading $apk_name"
|
||||
if ! curl -LO "https://github.com/animegasan/$apk_name/releases/download/$version/${apk_name}_${version}_all.ipk"; then
|
||||
echo "Failed to download $apk_name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Installing $apk_name"
|
||||
if ! opkg install "${apk_name}_${version}_all.ipk"; then
|
||||
echo "Failed to install $apk_name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Process completed. $apk_name has been installed."
|
@ -19,6 +19,12 @@
|
||||
|
||||
This project is an application inspired from the DNS leak test by <a target="_blank" href="https://github.com/macvk/dnsleaktest">macvk</a>, providing a user-friendly graphical interface to easily perform DNS security tests.
|
||||
|
||||
## Install via Terminal
|
||||
```
|
||||
curl -s https://raw.githubusercontent.com/animegasan/luci-app-dnsleaktest/master/install.sh | sh
|
||||
```
|
||||
|
||||
# Preview
|
||||
![image](https://github.com/animegasan/luci-app-dnsleaktest/assets/14136053/41e1dfab-e650-442a-82c6-3cb90a98ab38)
|
||||
|
||||
![image](https://github.com/animegasan/luci-app-dnsleaktest/assets/14136053/eaf9b37e-42b9-48df-9fcc-102fde405951)
|
||||
|
24
luci-app-dnsleaktest/install.sh
Normal file
24
luci-app-dnsleaktest/install.sh
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
apk_name="luci-app-dnsleaktest"
|
||||
version="1.1"
|
||||
|
||||
echo "Updating packages"
|
||||
if ! opkg update; then
|
||||
echo "Failed to update OPKG"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Downloading $apk_name"
|
||||
if ! curl -LO "https://github.com/animegasan/$apk_name/releases/download/$version/${apk_name}_${version}_all.ipk"; then
|
||||
echo "Failed to download $apk_name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Installing $apk_name"
|
||||
if ! opkg install "${apk_name}_${version}_all.ipk"; then
|
||||
echo "Failed to install $apk_name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Process completed. $apk_name has been installed."
|
@ -21,7 +21,7 @@ DroidNet is an application designed specifically for managing and optimizing net
|
||||
|
||||
## Install via Terminal
|
||||
```
|
||||
curl -s https://raw.githubusercontent.com/animegasan/luci-app-droidnet/master/install.sh | bash
|
||||
curl -s https://raw.githubusercontent.com/animegasan/luci-app-droidnet/master/install.sh | sh
|
||||
```
|
||||
|
||||
## Supported Devices
|
||||
|
@ -1,14 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
file_name="luci-app-droidnet_1.1_all.ipk"
|
||||
version="v1.1"
|
||||
apk_name="luci-app-droidnet"
|
||||
version="1.1"
|
||||
|
||||
echo "Updating OPKG"
|
||||
opkg update
|
||||
echo "Installing curl"
|
||||
opkg install curl
|
||||
echo "Downloading $file_name"
|
||||
curl -LO "https://github.com/animegasan/luci-app-droidnet/releases/download/$version/$file_name"
|
||||
echo "Installing $file_name"
|
||||
opkg install $file_name
|
||||
echo "Process completed. $file_name has been installed."
|
||||
echo "Updating packages"
|
||||
if ! opkg update; then
|
||||
echo "Failed to update OPKG"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Downloading $apk_name"
|
||||
if ! curl -LO "https://github.com/animegasan/$apk_name/releases/download/$version/${apk_name}_${version}_all.ipk"; then
|
||||
echo "Failed to download $apk_name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Installing $apk_name"
|
||||
if ! opkg install "${apk_name}_${version}_all.ipk"; then
|
||||
echo "Failed to install $apk_name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Process completed. $apk_name has been installed."
|
||||
|
@ -17,5 +17,11 @@
|
||||
</div>
|
||||
<hr/>
|
||||
|
||||
## Install via Terminal
|
||||
```
|
||||
curl -s https://raw.githubusercontent.com/animegasan/luci-app-ipinfo/master/install.sh | sh
|
||||
```
|
||||
|
||||
# Preview
|
||||
![image](https://github.com/animegasan/luci-app-ipinfo/assets/14136053/5d5879a7-716f-4e87-b2c2-ca8615cfba9d)
|
||||
![image](https://github.com/animegasan/luci-app-ipinfo/assets/14136053/f1970b49-2460-4602-8cdf-299bcea282c9)
|
||||
|
24
luci-app-ipinfo/install.sh
Normal file
24
luci-app-ipinfo/install.sh
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
apk_name="luci-app-ipinfo"
|
||||
version="2.2"
|
||||
|
||||
echo "Updating packages"
|
||||
if ! opkg update; then
|
||||
echo "Failed to update OPKG"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Downloading $apk_name"
|
||||
if ! curl -LO "https://github.com/animegasan/$apk_name/releases/download/$version/${apk_name}_${version}_all.ipk"; then
|
||||
echo "Failed to download $apk_name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Installing $apk_name"
|
||||
if ! opkg install "${apk_name}_${version}_all.ipk"; then
|
||||
echo "Failed to install $apk_name"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Process completed. $apk_name has been installed."
|
Loading…
Reference in New Issue
Block a user