Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

The Spotify indicator icon clashes with the native Unity theme, and is redundant, since it is already listed in the Sound indicator menu. Is there a way to remove or disable the Spotify indicator? Or at least to change the icon (couldn't grep it on my filesystem). I am using the Spotify "preview" with 12.04. Thanks!

share|improve this question
1  
Instead of removing it from your system, why not just make it look good and native in Ubuntu. While your at it why not just make Spotify look native in the interface as well via Ambiance? Sound hard? Well yes it massively freaking was! BUT I did it and you can use it if you want. :) michaeltunnell.com/blog/16-linux/… – Michael Tunnell Jan 14 at 9:40

2 Answers

up vote 4 down vote accepted

The best way to do this is to remove the icon used by spotify to display the indicator. This can be done by executing the following command in the terminal,

sudo mv /usr/share/spotify/theme/other/_linux/icon.ico /home/user_name/icon.ico

Replace user_name with your user name. This should effectively disable the spotify indicator. Exit spotify and restart spotify to notice the change.

share|improve this answer
This did work, for those looking at balloons's answer. – Syzygy Nov 22 '12 at 19:27
This doesn't work any more since Spotify 0.8.8.323... – Syzygy Jan 7 at 2:51

It could be worth trying to use apparmor to prevent spotify from loading the icon.

/etc/apparmor.d/usr.bin.spotify

/usr/bin/spotify {

  # deny read access to the icon
  deny /usr/share/spotify/theme/other/_linux/icon.ico r,
}

sudo /etc/init.d/apparmor reload

Wait for a few seconds and try running spotify again.

share|improve this answer
This didn't work for me, somehow. – Syzygy Nov 22 '12 at 19:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.