Advertisement
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 imagemagick\n"
- pkg install -y imagemagick
- echo -e "Installing ghostscript\n"
- pkg install -y ghostscript
- echo -e "Installing nano\n"
- pkg install -y nano
- echo -e "Installing man\n"
- pkg install -y man
- echo -e "Installing lynx\n"
- pkg install -y lynx
- echo -e "Installing curl\n"
- pkg install -y curl
- echo -e "Installing qpdf\n"
- pkg install -y qpdf
- echo -e "Installing termux-tools\n"
- pkg install -y termux-tools
- echo -e "Installing util-linux\n"
- pkg install -y util-linux
- echo -e "Installing python\n"
- pkg install -y python
- echo -e "Installing youtube-dl\n"
- yes | pip install youtube-dl
- echo -e "Installing gallery-dl\n"
- yes | pip install gallery-dl
- echo -e "Creating the Youtube folder to download the files\n"
- mkdir ~/storage/shared/Youtube
- echo -e "Creating the Youtube-Jukebox folder to download the files\n"
- mkdir ~/storage/shared/Youtube-Jukebox
- 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 gdrivedl in usr folder\n"
- wget https://pastebin.com/raw/6kEfLpx5 -O /data/data/com.termux/files/usr/bin/gdrivedl
- dos2unix /data/data/com.termux/files/usr/bin/gdrivedl
- echo -e "Downloading and installing termux-url-opener\n"
- wget https://pastebin.com/raw/iXNPQ4GV -O ~/bin/termux-url-opener
- dos2unix ~/bin/termux-url-opener
- echo -e "Downloading and installing .bashrc file\n"
- wget https://pastebin.com/raw/04DmrPKC -O ~/.bashrc
- dos2unix ~/.bashrc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement