Advertisement
karim0209

19062023_pkgs_installing

Jun 19th, 2023 (edited)
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.41 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 imagemagick\n"
  20. pkg install -y imagemagick
  21.  
  22. echo -e "Installing ghostscript\n"
  23. pkg install -y ghostscript
  24.  
  25. echo -e "Installing nano\n"
  26. pkg install -y nano
  27.  
  28. echo -e "Installing man\n"
  29. pkg install -y man
  30.  
  31. echo -e "Installing lynx\n"
  32. pkg install -y lynx
  33.  
  34. echo -e "Installing curl\n"
  35. pkg install -y curl
  36.  
  37. echo -e "Installing qpdf\n"
  38. pkg install -y qpdf
  39.  
  40. echo -e "Installing termux-tools\n"
  41. pkg install -y termux-tools
  42.  
  43. echo -e "Installing util-linux\n"
  44. pkg install -y util-linux
  45.  
  46. echo -e "Installing python\n"
  47. pkg install -y python
  48.  
  49. echo -e "Installing yt-dlp\n"
  50. yes | pip install yt-dlp
  51.  
  52. echo -e "Installing gallery-dl\n"
  53. yes | pip install gallery-dl
  54.  
  55. echo -e "Creating the Youtube folder to download the files\n"
  56. mkdir ~/storage/shared/Youtube
  57.  
  58. echo -e "Creating the Youtube-Jukebox folder to download the files\n"
  59. mkdir ~/storage/shared/Youtube-Jukebox
  60.  
  61. echo -e "Creating the Jukebox folder to download the files\n"
  62. mkdir ~/storage/shared/Jukebox
  63.  
  64. echo -e "Creating the Jukebox/Albums folder to download the files\n"
  65. mkdir ~/storage/shared/Jukebox/Albums
  66.  
  67. echo -e "Creating the description folder to download the files\n"
  68. mkdir ~/storage/shared/Jukebox/description
  69.  
  70. echo -e "Creating the Jukebox folder to download the files\n"
  71. mkdir ~/storage/shared/Jukebox/VideoSongs
  72.  
  73. echo -e "Creating bin folder\n"
  74. mkdir ~/bin
  75.  
  76. echo -e "Downloading and installing gdrivedl in usr folder\n"
  77. wget https://pastebin.com/raw/6kEfLpx5 -O /data/data/com.termux/files/usr/bin/gdrivedl
  78. dos2unix /data/data/com.termux/files/usr/bin/gdrivedl
  79.  
  80. echo -e "Downloading and installing organize in usr folder\n"
  81. wget https://pastebin.com/raw/f2Pq5tzp -O /data/data/com.termux/files/usr/bin/organize
  82. dos2unix /data/data/com.termux/files/usr/bin/organize
  83.  
  84. echo -e "Downloading and installing termux-url-opener\n"
  85. wget https://pastebin.com/raw/DbPJtucU -O ~/bin/termux-url-opener
  86. dos2unix ~/bin/termux-url-opener
  87.  
  88. echo -e "Downloading and installing .bashrc file\n"
  89. wget https://pastebin.com/raw/XDmFkJ8n -O ~/.bashrc
  90. dos2unix ~/.bashrc
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement