Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

spotify download ubuntu

#On ubuntu can just type following command:
snap install spotify
#if that not works you can also try to install the debian package
#you will need for this 'curl' so install that first
sudo apt install curl
#after installing curl or you already have installed curl you shuld run this command
curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add -
#and also
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
#after that get update
sudo apt-get update
#and also the upgrade
sudo apt-get upgrade
#now install spotify client
sudo apt-get install spotify-client
#now you can open spotify
#users with 4k monitor i recement to scale the app up
#else it will be very hard to read the text
#open for that again the terminal
#open directory /usr/share/applications/
cd /usr/share/applications/
#open spotify.desktop file with sudo
sudo gedit spotify.desktop
#now change the line
Exec=spotify %U
#to:
Exec=spotify --force-device-scale-factor=2.0 %U
#and safe the file
#this will scale spotify for 2x while starting
#now you can close everything and open spotify
Comment

install spotify ubuntu

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
Comment

spotify ubuntu

curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add - echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
Comment

PREVIOUS NEXT
Code Example
Shell :: zip file linux 
Shell :: npm i postgresql 
Shell :: ubuntu lamp setup 
Shell :: ionic capacitor run ios 
Shell :: flutter signingthe app 
Shell :: find external ip ubuntu 
Shell :: installing font awesome brand icons 
Shell :: my ip 
Shell :: delete a deployment in kubernetes 
Shell :: how to make makefile 
Shell :: merge master into local branch 
Shell :: how to install axios in react 
Shell :: tar extract command windows 
Shell :: force docker for a clean build of an image 
Shell :: materila ui 
Shell :: push branch to main github 
Shell :: git cherry pick many commits 
Shell :: how to leave a directory on terminal 
Shell :: how to make a file executable in linux 
Shell :: wget debian to Downloads 
Shell :: move files from local to remote ssh 
Shell :: download docker linux 
Shell :: time command windows 
Shell :: Difference between user and group in Linux 
Shell :: sngrep printed lines correctly 
Shell :: service previous logs 
Shell :: bitbucket rename remote tag 
Shell :: removing numbers from ubuntu icons 
Shell :: Exception: No Linux desktop project configured. 
Shell :: install docker-machine-driver-hyperkit 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =