Skip to content

Instantly share code, notes, and snippets.

@bluesku
Last active February 23, 2021 16:18
Show Gist options
  • Save bluesku/ce5e7c9c0d21e5d029ca80f2716adda5 to your computer and use it in GitHub Desktop.
Save bluesku/ce5e7c9c0d21e5d029ca80f2716adda5 to your computer and use it in GitHub Desktop.
kodi-install-ubuntu repo
#! /bin/sh
add-apt-repository ppa:team-xbmc/ppa
apt update ; apt install kodi -y
#keep reading https://launchpad.net/~team-xbmc/+archive/ubuntu/ppa
#! /bin/sh
#This PPA can be added to your system manually by copying the lines below and adding them to your system's software
#sources.
echo 'Xenial 16.04 / Bionic 18.04 / Disco 19.04 / Focal 20.04 /Groovy 20.10'
echo 'eg.: deb http://ppa.launchpad.net/team-xbmc/ppa/ubuntu bionic main '
read -p 'Set your Ubuntu Version: ' version
echo 'deb http://ppa.launchpad.net/team-xbmc/ppa/ubuntu $version main ' >> /etc/apt/sources.list
echo 'deb-src http://ppa.launchpad.net/team-xbmc/ppa/ubuntu $version main' >> /etc/apt/sources.list
#keep reading https://launchpad.net/~team-xbmc/+archive/ubuntu/ppa
apt update; apt install kodi -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment