ui change

no connection prompt, help menu overlay transition. Better readability installation script.
This commit is contained in:
KOWX712
2024-11-13 00:15:38 +08:00
parent 584ad2f2df
commit face2fe644
8 changed files with 202 additions and 134 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/sh
# This script will put all non-system app into /data/adb/tricky_store/target.txt
# This script will put non-system app into /data/adb/tricky_store/target.txt
CONFIG_DIR="/data/adb/tricky_store/target_list_config"
echo "- Checking config files..."

View File

@@ -3,6 +3,10 @@
MODPATH=${0%/*}
OUTPUT="$MODPATH/exclude-list"
if ! curl -s "https://modules.lsposed.org/modules.json" > /dev/null; then
exit 1
fi
# Fetch Xposed module package names
curl -s "https://modules.lsposed.org/modules.json" | \
grep -o '"name":"[^"]*","description":' | \