Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/data/data/com.termux/files/usr/bin/bash
- echo -e "Updating default packages\n"
- apt update && apt -y upgrade
- echo -e "Requesting acces to storage\n"
- termux-setup-storage
- sleep 5
- echo -e "Installing aria2\n"
- pkg install -y aria2
- echo -e "Installing ffmpeg\n"
- pkg install -y ffmpeg
- echo -e "Installing atomicparsley\n"
- pkg install -y atomicparsley
- echo -e "Installing nano\n"
- pkg install -y nano
- echo -e "Installing python\n"
- pkg install -y python
- echo -e "Installing youtube-dl\n"
- yes | pip install youtube-dl
- echo -e "Creating the Youtube folder to download the files\n"
- mkdir ~/storage/shared/Youtube
- echo -e "Creating youtube-dl folder for config\n"
- mkdir -p ~/.config/youtube-dl
- echo -e "Creating bin folder\n"
- mkdir ~/bin
- echo -e "Downloading and installing termux-url-opener\n"
- wget https://pastebin.com/raw/c5hw5WRv -O ~/bin/termux-url-opener
- dos2unix ~/bin/termux-url-opener
- echo -e "Downloading and installing termux-file-editor\n"
- wget https://pastebin.com/raw/fxBFAUUp -O ~/bin/termux-file-editor
- dos2unix ~/bin/termux-file-editor
Add Comment
Please, Sign In to add comment