Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # From Launchpad: https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/416341
- #
- # Binary package hint: network-manager-gnome
- #
- # 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:
- #
- # /usr/share/icons/gnome/16x16/status/gnome-dev-wavelan-encrypted.png
- # /usr/share/icons/gnome/22x22/status/gnome-dev-wavelan-encrypted.png
- # /usr/share/icons/gnome/24x24/status/gnome-dev-wavelan-encrypted.png
- #
- # As root user do:
- cd /usr/share/icons/Tango/
- find . -iname "gtk-dialog-error*" | while read i ; do echo $i; cp $i ../hicolor/$i; done
- gtk-update-icon-cache -f /usr/share/icons/hicolor/
- # After this nm-applet was able to find gtk-dialog-error in hicolor theme.
Advertisement
Add Comment
Please, Sign In to add comment