Created
January 11, 2023 05:35
-
-
Save oogali/528a432326c59a9de9c27a4ea1ad25b8 to your computer and use it in GitHub Desktop.
Install Spotify on Debian
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Combined instructions from: | |
# - https://www.spotify.com/us/download/linux/ | |
# - https://stackoverflow.com/a/69015383 | |
# | |
# @oogali | |
curl https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | \ | |
gpg --no-default-keying --keyring gnupg-ring:/etc/apt/trusted.gpg.d/spotify.gpg --import | |
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