Gentoo Archives: gentoo-user

From: Richard Fish <bigfish@××××××××××.org>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Re: Evolution icons missing under KDE but nut under Gnome
Date: Tue, 04 Jul 2006 21:45:23
Message-Id: 7573e9640607041437o18c62169oe40b496eeea516@mail.gmail.com
In Reply to: Re: [gentoo-user] Re: Evolution icons missing under KDE but nut under Gnome by Paul Varner
1 On 6/13/06, Paul Varner <fuzzyray@g.o> wrote:
2 > On Sun, 2006-06-11 at 19:44 -0700, Richard Fish wrote:
3 > > Looks like I'll be masking >=evolution-2.6.0....
4 > > </rant>
5 > >
6 > > http://bugs.gentoo.org/show_bug.cgi?id=133241
7 >
8 > Masking the following fixed it for me
9 >
10 > =x11-themes/gnome-icon-theme-2.14.2
11 >
12 > I haven't had the time to investigate further or file a bug report.
13
14 Ok, I've found a fix for this. It looks like we need to set
15 gtk-fallback-icon-theme = "gnome" in a gtkrc file.
16
17 Assuming you have KDE setup to export settings to gtk/gnome apps, it
18 will overwrite your ~/.gtkrc-2.0 file, and also add a line to your
19 ~/.bashrc to make sure it is used by gtk. Your ~/.bashrc probably
20 contains:
21
22 # This line was appended by KDE
23 # Make sure our customised gtkrc file is loaded.
24 export GTK2_RC_FILES=$HOME/.gtkrc-2.0
25
26 If you change this line, or the .gtkrc-2.0 file, the KDE control
27 center may overwrite the changes. So my fix is to change ~/.bashrc to
28 contain:
29
30 ----
31 # This line was appended by KDE
32 # Make sure our customised gtkrc file is loaded.
33 export GTK2_RC_FILES=$HOME/.gtkrc-2.0
34
35 # and also use my personal .gtkrc file...
36 export GTK2_RC_FILES="${GTK2_RC_FILES}:$HOME/.gtkrc-2.0-rjf"
37 ----
38
39 Then .gtkrc-2.0-rjf contains only:
40 ----
41 gtk-fallback-icon-theme = "gnome"
42 ----
43
44 This allows all evolution icons to be found.
45
46 Of course, I had to dig through the source to figure out the fix, but
47 once I knew the solution, finding the relevant web pointers was easy!
48 See:
49
50 http://bugzilla.gnome.org/show_bug.cgi?id=330061
51 http://mail.gnome.org/archives/desktop-devel-list/2006-February/msg00425.html
52
53 -Richard
54 --
55 gentoo-user@g.o mailing list

Replies