Advertisement
karim0209

2025 Termux Installing pkgs

Mar 2nd, 2025 (edited)
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.01 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 "Creating the Description folder to download the files\n"
  53. mkdir ~/storage/shared/Description
  54.  
  55. echo -e "Creating the Description/Auto-SubT-English folder to download the files\n"
  56. mkdir ~/storage/shared/Description/Auto-SubT-English
  57.  
  58. echo -e "Creating the Description/Auto-SubT-Telugu folder to download the files\n"
  59. mkdir ~/storage/shared/Description/Auto-SubT-Telugu
  60.  
  61. echo -e "Creating bin folder\n"
  62. mkdir ~/bin
  63.  
  64. echo -e "Downloading and installing organize in usr folder\n"
  65. wget https://pastebin.com/raw/f2Pq5tzp -O /data/data/com.termux/files/usr/bin/organize
  66. dos2unix /data/data/com.termux/files/usr/bin/organize
  67.  
  68. echo -e "Downloading and installing termux-url-opener\n"
  69. wget https://pastebin.com/raw/bJdjxdJt -O ~/bin/termux-url-opener
  70. dos2unix ~/bin/termux-url-opener
  71.  
  72. echo -e "Downloading vtt2text file\n"
  73. wget https://pastebin.com/raw/KPubVHTP -O ~/vtt2text.py
  74.  
  75. echo -e "Downloading and installing .bashrc file\n"
  76. wget https://pastebin.com/raw/H5Cttavy -O ~/.bashrc
  77. dos2unix ~/.bashrc
  78.  
  79.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement