LinuxQuestions.org
Support LQ: Use code LQCO20 and save 20% on CrossOver Office
Go Back   LinuxQuestions.org > Forums > Linux > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices

Tags used in this thread
Popular LQ Tags , , ,

Reply
 
Thread Tools
Old 01-16-2007, 01:11 AM   #1
skismatik
LQ Newbie
 
Registered: Dec 2006
Location: RCSD
Distribution: FC
Posts: 2
Thanked: 0
evolution icons missing in kde


[Log in to get rid of this advertisement]
When I open evolution in kde all of my icons are missing.

I found this solution weeks ago and googled like mad to find the answer again, didn't find it.

Scrolled through weeks of terminal commands to retrieve, so I though I'd post it for anyone who may need it.

$ chmod -R 0775 /usr/share/icons
$ echo gtk-icon-theme-name=\"gnome\" >> ~/.gtkrc-2.0

Now my icons live.
skismatik is offline  
Tag This Post , , ,
Reply With Quote
Old 01-18-2007, 10:46 PM   #2
am511
LQ Newbie
 
Registered: Dec 2005
Posts: 2
Thanked: 0
Thank you very much for posting the solution. I am searching for a solution for about 2 weeks now. I saw other people have the same or similar problem but with no solution.

When I executed "chmod -R 0775 /usr/share/icons" command, I just got "operation not permitted", but the second command ran without any error and restored my icons in Evolution.
am511 is offline     Reply With Quote
Old 01-19-2007, 01:21 AM   #3
skismatik
LQ Newbie
 
Registered: Dec 2006
Location: RCSD
Distribution: FC
Posts: 2
Thanked: 0

Original Poster
I <3 Linux

Sweet, after all the posts I've read, and all that I've learned, I've finally contributed. Now, I'm officially a second level noob.

I <3 Linux.
skismatik is offline     Reply With Quote
Old 01-22-2007, 11:53 AM   #4
SkippyBoy
Member
 
Registered: Oct 2005
Distribution: Suse10.2
Posts: 64
Thanked: 0
THANK YOU!!!!

This has been bugging me for weekss
SkippyBoy is offline     Reply With Quote
Old 02-16-2007, 09:34 PM   #5
ixion
Member
 
Registered: Dec 2002
Location: USA
Distribution: SuSE, CentOS, Gentoo
Posts: 166
Thanked: 0
Wahoo! worked for me too, thanks!
ixion is offline     Reply With Quote
Old 03-27-2007, 12:27 PM   #6
Sprengmeister
LQ Newbie
 
Registered: Mar 2007
Posts: 1
Thanked: 0
Thanks, but I had to type

echo gtk-icon-theme-name=\"gnome\" >> ~/.gtkrc-2.0-kde

instead of .....~/.gtkrc-2.0
Sprengmeister is offline     Reply With Quote
Old 04-18-2007, 09:55 PM   #7
oxleyk
Member
 
Registered: Nov 2003
Distribution: Ubuntu
Posts: 308
Thanked: 0
I have this problem now but none of the suggestions fixed it

Kent
oxleyk is offline     Reply With Quote
Old 04-21-2007, 12:22 PM   #8
oxleyk
Member
 
Registered: Nov 2003
Distribution: Ubuntu
Posts: 308
Thanked: 0
Quote:
Originally Posted by oxleyk
I have this problem now but none of the suggestions fixed it

Kent
I just tried the suggestions again and now the Evolutions icons are back.
oxleyk is offline     Reply With Quote
Old 04-24-2007, 07:17 AM   #9
arckane
Member
 
Registered: Sep 2005
Location: UK
Distribution: Gentoo/Debian/Ubuntu
Posts: 306
Thanked: 14
1st option worked on Debian
arckane is offline     Reply With Quote
Old 04-25-2007, 07:53 PM   #10
guysoft
Member
 
Registered: Jun 2004
Location: israel
Distribution: mandrake, MEPIS and menny live-cds
Posts: 65
Thanked: 0
YAY, this command was a life-saver :-)

just make sure you do
Code:
echo gtk-icon-theme-name=\"gnome\" >> ~/.gtkrc-2.0
on the right user and not root.. got me confused there for a second.
guysoft is offline     Reply With Quote
Old 05-16-2007, 07:18 AM   #11
aviel
LQ Newbie
 
Registered: Aug 2003
Location: Israel
Distribution: Fedora Core 6
Posts: 19
Thanked: 0
doesn't help on FC6

It doesn't help on my Fedora core 6.

First, i don't have ~/.gtkrc-2.0, but ~/.gtkrc and ~/.gtkrc-1.2-gnome2

The firs one has
Code:
# -- THEME AUTO-WRITTEN DO NOT EDIT
include "/usr/share/themes/Bluecurve/gtk-2.0/gtkrc"
# -- THEME AUTO-WRITTEN DO NOT EDIT
and ~/.gtkrc-1.2-gnome2 has
Code:
# Autowritten by gnome-settings-daemon. Do not edit

include "/home/aviel/.gtkrc.mine"
I added a file /home/aviel/.gtkrc.mine and put it
gtk-icon-theme-name="gnome"

and it still didn't help.

I must also mention that i didn't do the chmod -R 755 line, because it didn't seem necessary, and it is very hard to reverse such a command.

Any other ideas?
aviel is offline     Reply With Quote
Old 05-22-2007, 06:47 PM   #12
a1danel
LQ Newbie
 
Registered: Apr 2007
Location: California
Distribution: Debian/Redhat/Fedora
Posts: 12
Thanked: 0
RE: evolution icons missing in kde

vi /etc/gtk-2.0/gtkrc

change:

gtk-icon-theme-name = "Clearlooks"

to

gtk-icon-theme-name = "Bluecurve"

or

gtk-icon-theme-name = "GNOME"
a1danel is offline     Reply With Quote
Old 05-28-2007, 06:57 AM   #13
aviel
LQ Newbie
 
Registered: Aug 2003
Location: Israel
Distribution: Fedora Core 6
Posts: 19
Thanked: 0
Thanks, a1danel.
The "Bluecurve" option worked, the "GNOME" didn't.
aviel is offline     Reply With Quote
Old 06-05-2007, 02:16 PM   #14
a1danel
LQ Newbie
 
Registered: Apr 2007
Location: California
Distribution: Debian/Redhat/Fedora
Posts: 12
Thanked: 0
no problem; you can always go to your "Control Center"->"Appearance & Themes"->"Icons" to see what Icon themes you have available and use those in your gtk-icon-theme-name="Whatever IconTheme" for evolution.

Glad it worked though.
a1danel is offline     Reply With Quote
Old 05-05-2008, 06:54 PM   #15
oscaremu
LQ Newbie
 
Registered: May 2008
Location: Locombia
Distribution: Slackware
Posts: 2
Thanked: 0
Slackware 12.1 and gsb

I have the same problem, I use Slackware and GSB, the fix was:

echo gtk-icon-theme-name=\"gnome\" >> /etc/gtk-2.0/gtkrc

bye
oscaremu is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Icons go missing in KDE neranjana Linux - Software 1 01-18-2007 10:53 PM
Shortcut icons missing in Ximain Evolution 1.2.1 bluester Linux - Software 3 11-12-2005 01:43 AM
KDE 3.1 upgrade to 3.3.1 - missing icons? decavolt Suse/Novell 4 11-03-2004 01:51 PM
Missing KDE icons in Gnome perrymans Linux - General 2 08-06-2003 10:24 PM
Missing icons in KDE billkris Linux - Software 2 03-03-2003 03:28 PM


All times are GMT -5. The time now is 06:28 AM.

Main Menu
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration