mikhalit

Missing Icons Gnome Nm-applet

Apr 12th, 2011
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.89 KB | None | 0 0
  1. # From Launchpad: https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/416341
  2. #
  3. # Binary package hint: network-manager-gnome
  4. #
  5. # I installed nm-applet to my kubuntu-9.04 because it is more space efficient than the KDE # plasma applet, however, i noticed that some icon were missing from the nm-applet menu. # After some detective work i discovered that nm-applet uses one of these in the menu:
  6. #
  7. # /usr/share/icons/gnome/16x16/status/gnome-dev-wavelan-encrypted.png
  8. # /usr/share/icons/gnome/22x22/status/gnome-dev-wavelan-encrypted.png
  9. # /usr/share/icons/gnome/24x24/status/gnome-dev-wavelan-encrypted.png
  10. #
  11. # As root user do:
  12.  
  13. cd /usr/share/icons/Tango/
  14. find . -iname "gtk-dialog-error*" | while read i ; do echo $i; cp $i ../hicolor/$i; done
  15. gtk-update-icon-cache -f /usr/share/icons/hicolor/
  16.  
  17. # After this nm-applet was able to find gtk-dialog-error in hicolor theme.
Advertisement
Add Comment
Please, Sign In to add comment