karim0209

Pkgs install

Jul 7th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.08 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 python\n"
  23. pkg install -y python
  24.  
  25. echo -e "Installing youtube-dl\n"
  26. yes | pip install youtube-dl
  27.  
  28. echo -e "Creating the Youtube folder to download the files\n"
  29. mkdir ~/storage/shared/Youtube
  30.  
  31. echo -e "Creating youtube-dl folder for config\n"
  32. mkdir -p ~/.config/youtube-dl
  33.  
  34. echo -e "Creating bin folder\n"
  35. mkdir ~/bin
  36.  
  37. echo -e "Downloading and installing termux-url-opener\n"
  38. wget https://pastebin.com/raw/c5hw5WRv -O ~/bin/termux-url-opener
  39. dos2unix ~/bin/termux-url-opener
  40.  
  41. echo -e "Downloading and installing termux-file-editor\n"
  42. wget https://pastebin.com/raw/fxBFAUUp -O ~/bin/termux-file-editor
  43. dos2unix ~/bin/termux-file-editor
Add Comment
Please, Sign In to add comment