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

ubuntu spotify

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
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 :: replace whitespace with newline 
Shell :: how to clear gradle cache gitignore 
Shell :: vscode update terminal limit 
Shell :: git clone with different folder name 
Shell :: flutter step to release appbundle 
Shell :: ubuntu 20.04 ifconfig public ip address 
Shell :: gnome set wallpaper command line 
Shell :: How to install cookies react 
Shell :: add folders to gitignore 
Shell :: makefile linux 
Shell :: git delete commit from history 
Shell :: git assume undo unchanged 
Shell :: delete a folder from git 
Shell :: docker build without cache 
Shell :: bash if number greater than zero 
Shell :: clear command in linux 
Shell :: display settings ubuntu 20.04 in right side 
Shell :: how to view the list of your environments in your terminal or Anaconda prompt 
Shell :: how to delete an issue on github 
Shell :: push to multiple repos git 
Shell :: vim plug not working 
Shell :: how to git push to current branch 
Shell :: display hidden files in linux 
Shell :: mac m1 linux install 
Shell :: aws cli parse secretstring 
Shell :: bash: udevadm: command not found 
Shell :: xargs ffmpeg multiples files 
Shell :: set up django-lint 
Shell :: bash add text to second line 
Shell :: monit network request in ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =