Icon Theme

All questions and problems regarding the installation and upgrades of LXDE from USB Stick, Live CD or Web.
Locked
ocurrente
Posts: 1
Joined: Wed Oct 06, 2010 5:01 am

Icon Theme

Post by ocurrente »

Hi everyone, an Ubuntu newbie here!

I installed LXDE on Ubuntu 9.10, and only the first time i logged in, an error appears:
GTK+ icon theme is not properly set

This usually means you don't have an XSETTINGS manager running. Desktop environment like GNOME or XFCE automatically execute their XSETTING managers like gnome-settings-daemon or xfce-mcs-manager.

If you don't use these desktop environments, you have two choices:
1. run an XSETTINGS manager, or
2. simply specify an icon theme in ~/.gtkrc-2.0.
For example to use the Tango icon theme add a line:
gtk-icon-theme-name="Tango" in your ~/.gtkrc-2.0. (create it if no such file)

NOTICE: The icon theme you choose should be compatible with GNOME, or the file icons cannot be displayed correctly. Due to the differences in icon naming of GNOME and KDE, KDE themes cannot be used. Currently there is no standard for this, but it will be solved by freedesktop.org in the future.
but now I have lxde-settings-daemon running, however, i can only see the folders, but i can't see other file icons (mp3, jpg, rar, gif, etc.) and i can't open them directly.

I did what the error message say, to create the gtkrc-2.0 file, but it didn't work.

I use lxappearance, this is the config file content in /home/user/.config/lxde

Code: Select all

[GTK]
sNet/ThemeName=Loma
sNet/IconThemeName=Quickening
sGtk/FontName=Sans 10
iGtk/ToolbarStyle=3
the file has exactly what i chose in lxappearance but the icons doesn't appear. I have to open them with right-click->open with...

i found this, but i can't completely understand what it means http://wiki.archlinux.org/index.php/LXD ... lxsession..

I've been looking for a couple of days, but i can't solve the problem.

well, I hope I've explained myself well, because i don't speak english properly.
I hope you can help me.
finkler
Posts: 3
Joined: Mon Mar 01, 2010 3:15 pm

Re: Icon Theme

Post by finkler »

From what I can understand from the wiki link you gave, you need to copy the contents of /home/user/.config/lxde into the /home/user/.config/lxsession/LXDE/desktop.conf file and the contents of /usr/share/lxde/config into /etc/xdg/lxsession/LXDE/desktop.conf file. This should hopefully solve your problems.

For example, this is what my /etc/xdg/lxsession/LXDE/desktop.conf and /home/user/.config/lxsession/LXDE/desktop.conf on a Fedora 13 desktop look like :

Code: Select all

[Session]
window_manager=openbox-lxde

[GTK]
sNet/ThemeName=Clearlooks
sNet/IconThemeName=Mist
sGtk/FontName=Sans 10
iGtk/ToolbarStyle=3
iGtk/ButtonImages=1
iGtk/MenuImages=1
iGtk/CursorThemeSize=18
iXft/Antialias=1

[Mouse]
AccFactor=20
AccThreshold=10
LeftHanded=0

[Keyboard]
Delay=500
Interval=30
Locked