karim0209

Packages 11-10-2020

Oct 11th, 2020 (edited)
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.37 KB | None | 0 0
  1. #!/data/data/com.termux/files/usr/bin/bash
  2.  
  3. echo -e "Updating default packages\n"
  4. apt update && apt -y upgrade
  5.  
  6. echo -e "Requesting acces to storage\n"
  7. termux-setup-storage
  8. sleep 5
  9.  
  10. echo -e "Installing aria2\n"
  11. pkg install -y aria2
  12.  
  13. echo -e "Installing ffmpeg\n"
  14. pkg install -y ffmpeg
  15.  
  16. echo -e "Installing atomicparsley\n"
  17. pkg install -y atomicparsley
  18.  
  19. echo -e "Installing nano\n"
  20. pkg install -y nano
  21.  
  22. echo -e "Installing man\n"
  23. pkg install -y man
  24.  
  25. echo -e "Installing lynx\n"
  26. pkg install -y lynx
  27.  
  28. echo -e "Installing curl\n"
  29. pkg install -y curl
  30.  
  31. echo -e "Installing qpdf\n"
  32. pkg install -y qpdf
  33.  
  34. echo -e "Installing termux-tools\n"
  35. pkg install -y termux-tools
  36.  
  37. echo -e "Installing util-linux\n"
  38. pkg install -y util-linux
  39.  
  40. echo -e "Installing python\n"
  41. pkg install -y python
  42.  
  43. echo -e "Installing youtube-dl\n"
  44. yes | pip install youtube-dl
  45.  
  46. echo -e "Installing spotdl\n"
  47. yes | pip install spotdl
  48.  
  49. echo -e "Installing gallery-dl\n"
  50. yes | pip install gallery-dl
  51.  
  52. echo -e "Creating the Youtube folder to download the files\n"
  53. mkdir ~/storage/shared/Youtube
  54.  
  55. echo -e "Creating the Youtube-Jukebox folder to download the files\n"
  56. mkdir ~/storage/shared/Youtube-Jukebox
  57.  
  58. echo -e "Creating youtube-dl folder for config\n"
  59. mkdir -p ~/.config/youtube-dl
  60.  
  61. echo -e "Creating bin folder\n"
  62. mkdir ~/bin
  63.  
  64. echo -e "Downloading and installing gdrivedl in usr folder\n"
  65. wget https://pastebin.com/raw/6kEfLpx5 -O /data/data/com.termux/files/usr/bin/gdrivedl
  66. dos2unix /data/data/com.termux/files/usr/bin/gdrivedl
  67.  
  68. echo -e "Downloading and installing python THAu in usr folder\n"
  69. wget https://pastebin.com/raw/rYERBZwT -O /data/data/com.termux/files/usr/bin/THAu
  70. dos2unix /data/data/com.termux/files/usr/bin/THAu
  71.  
  72. echo -e "Downloading and installing python THAurls in usr folder\n"
  73. wget https://pastebin.com/raw/dsSrbGYC -O /data/data/com.termux/files/usr/bin/THAurls
  74. dos2unix /data/data/com.termux/files/usr/bin/THAurls
  75.  
  76. echo -e "Downloading and installing termux-url-opener\n"
  77. wget https://pastebin.com/raw/UbatJHHd -O ~/bin/termux-url-opener
  78. dos2unix ~/bin/termux-url-opener
  79.  
  80. echo -e "Downloading and installing termux-file-editor\n"
  81. wget https://pastebin.com/raw/ZNAj9XRS -O ~/bin/termux-file-editor
  82. dos2unix ~/bin/termux-file-editor
  83.  
  84. echo -e "Downloading and installing .bashrc file\n"
  85. wget https://pastebin.com/raw/WjFQRdv9 -O ~/.bashrc
  86. dos2unix ~/.bashrc
Add Comment
Please, Sign In to add comment