11 lines
309 B
Bash
Executable File
11 lines
309 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# https://www.spotify.com/cz/download/linux/
|
|
|
|
set -x
|
|
|
|
curl -sS https://download.spotify.com/debian/pubkey.gpg | sudo apt-key add -
|
|
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
|
|
sudo apt-get update && sudo apt-get install spotify-client
|
|
|