Skip to content

Instantly share code, notes, and snippets.

@micrub
Last active July 12, 2018 00:06
Show Gist options
  • Save micrub/5e9d5e7addbce8cc56ba40c25ba1eccc to your computer and use it in GitHub Desktop.
Save micrub/5e9d5e7addbce8cc56ba40c25ba1eccc to your computer and use it in GitHub Desktop.
spotify client install on ubuntu (based on official publication)

Condenced spotify client installation bash script derviative based on official one

Execute as root:

#!/bin/bash -x
# must be executed as su
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0DF731E45CE24F27EEEB1450EFDC8610341D9410 931FF8E79F0876134EDDBDCCA87FF9DF48BF1C90
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
apt-get update
apt-get install spotify-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment