A tool which can be used to search and play YouTube music!
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

dependencies.sh 609 B

1234567891011121314151617181920
  1. echo "Your distro? ( 1)Arch, 2)Debian): "
  2. read distro
  3. if [ $distro -eq 1 ]
  4. then
  5. sudo pacman -S python3 python-pip mpv youtube-dl
  6. pip install youtube-search
  7. chmod +x spotitube.sh
  8. elif [ $distro -eq 2 ]
  9. then
  10. sudo apt remove youtube-dl
  11. sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
  12. sudo chmod a+rx /usr/local/bin/youtube-dl
  13. youtube-dl -U
  14. sudo apt install python3 python3-pip mpv
  15. pip3 install youtube-search
  16. chmod +x spotitube.sh
  17. else
  18. echo "You typed in: $distro"
  19. echo "Wrong input, please type one of the two: (1/2)";
  20. fi