configs/install-stuff/install-yt-music.bash

26 lines
1 KiB
Bash
Raw Normal View History

2023-09-13 10:17:15 -05:00
#!/usr/bin/env bash
set -e
if [ $(whoami) == "root" ]; then
echo "Run as a normal user, not root"
exit 1
fi
command_exists() { type "$1" &>/dev/null; }
if command_exists "apt-get"; then
sudo curl -L https://askiiart.net/repos/debian/dists/bookworm/stable/binary-amd64/askiiart.list -o /etc/apt/sources.list.d/askiiart.list
sudo apt update --allow-insecure-repositories
sudo apt install youtube-music -y --allow-unauthenticated
elif command_exists "yum"; then
sudo dnf config-manager --add-repo https://askiiart.net/repos/fedora/x86_64/askiiart.repo
sudo dnf install youtube-music -y
2023-10-20 12:04:34 -05:00
elif command_exists "yay"; then
yay -S youtube-music-bin --noconfirm --needed
elif command_exists "xbps-install"; then
cd ~/Applications
curl -LO $(curl -s https://api.github.com/repos/th-ch/youtube-music/releases/latest | grep "browser_download_url.*YouTube-Music-.*.AppImage" | cut -d : -f 2,3 | tr -d \") -C -
cd -
2023-09-13 10:17:15 -05:00
else
echo "IDK, check the repo: https://github.com/th-ch/youtube-music"
fi