Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Android/.profile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ alias myip="curl ipinfo.io/ip"
alias dl="cd /storage/emulated/0/Download"

# Update all packages
alias update-all="pkg update -y && pkg upgrade -y && apt autoremove -y && pip install -U yt-dlp"
alias update-all="pkg update -y && pkg upgrade -y && apt autoremove -y && uv tool upgrade yt-dlp"

# Additional DNS servers
echo "nameserver 10.10.9.1" >> $PREFIX/etc/resolv.conf
Expand Down
2 changes: 1 addition & 1 deletion Android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Termux URL opener for downloading YouTube videos at 360p, 720p and 1080p
- Termux URL opener for downloading videos from any site that works with yt-dlp
- Termux URL opener for downloading songs from anything that works with yt-dlp
- Script to update all pkg and pip packages
- Script to update all pkg and uv packages

# Requirements
- [F-Droid (alternate to Play Store)](https://f-droid.org/)
Expand Down
4 changes: 3 additions & 1 deletion Android/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ pkg update -y
pkg upgrade -y
pkg install wget -y
pkg install -y python ffmpeg nmap jq
yes | pip install -U "yt-dlp[default]"
curl -LsSf https://astral.sh/uv/install.sh | sh
source "$HOME/.local/bin/env"
uv tool install --upgrade "yt-dlp[default]"

# Download main scripts to home folder
wget https://raw.githubusercontent.com/USBAkimbo/Random/master/Android/pka-downloader.sh
Expand Down