Desktop Icons
Desktop Icons
How would I go about changing my Icons on the desktop?
I can't get this to work either.
This line does not work for me: tar zxvf icons.tar.gz -C $USER_HOME
Code: Select all
wget -c http://easylinux.info/uploads/icons.tar.gz
tar zxvf icons.tar.gz -C $USER_HOME
rm -f icons.tar.gz
wget -c http://easylinux.info/uploads/themes.tar.gz
tar zxvf themes.tar.gz -C $USER_HOME
rm -f themes.tar.gz
Okay over the past few hours I have figured out a ton...
But I still can not find where I can change the recycle bin Icon with out messing with a theme...
Here is a screen of my desktop and the recycle bin. The two I have to replace my current one is on the desktop next to the current bin.

Any ideas?
But I still can not find where I can change the recycle bin Icon with out messing with a theme...
Here is a screen of my desktop and the recycle bin. The two I have to replace my current one is on the desktop next to the current bin.

Any ideas?
-
- guru
- Posts: 562
- Joined: Thu Jan 09, 2003 8:25 pm
Of course other Desktop Environments do things differently but in GNOME those icons are part of a theme and there are only two ways of changing them that I know of:
1) Create an icon theme package much like found here:
http://art.gnome.org/themes/icon/
Then just drag and drop it into the theme manager and use it. This will only effect your user as it will install in your home directory (~/.icons). If you want to install one of these packages so it is available to everyone extract it under /usr/share/icons (you'll need to su to root for this).
or
2) Find the icons on the file system and replace them. For instance, say you have the "gnome-themes" package installed and you are using the "Smokey-Blue" icon theme but you wanted different trashcan icons. You would have to replace the trashcan icons from that icon theme installed on your drive. By looking at the files in the gnome-theme package with "Smokey-Blue" and trashcan in their name you can find which icons need to be changed:
This will effect all users and of course changing icons in these directories require root level access.
I know that probably isn't the answer you were hoping for but that is GNOME. If you want to be able to perform more desktop customizations you might check out KDE. Each desktop environment does things differently so you can pick one that suits your needs. I used to really be a tweaker and though KDE was better because of it. Now I don't care about tweaking desktops because I do all my work at a shell prompt as you know so I want something clean and easy. GNOME fits my needs rather well at the moment.
1) Create an icon theme package much like found here:
http://art.gnome.org/themes/icon/
Then just drag and drop it into the theme manager and use it. This will only effect your user as it will install in your home directory (~/.icons). If you want to install one of these packages so it is available to everyone extract it under /usr/share/icons (you'll need to su to root for this).
or
2) Find the icons on the file system and replace them. For instance, say you have the "gnome-themes" package installed and you are using the "Smokey-Blue" icon theme but you wanted different trashcan icons. You would have to replace the trashcan icons from that icon theme installed on your drive. By looking at the files in the gnome-theme package with "Smokey-Blue" and trashcan in their name you can find which icons need to be changed:
Code: Select all
$ find /usr/share/icons/Smokey-Blue | grep trash
/usr/share/icons/Smokey-Blue/64x64/filesystems/gnome-fs-trash-empty-accept.png
/usr/share/icons/Smokey-Blue/64x64/filesystems/gnome-fs-trash-empty.png
/usr/share/icons/Smokey-Blue/64x64/filesystems/gnome-fs-trash-full-accept.png
/usr/share/icons/Smokey-Blue/64x64/filesystems/gnome-fs-trash-full.png
I know that probably isn't the answer you were hoping for but that is GNOME. If you want to be able to perform more desktop customizations you might check out KDE. Each desktop environment does things differently so you can pick one that suits your needs. I used to really be a tweaker and though KDE was better because of it. Now I don't care about tweaking desktops because I do all my work at a shell prompt as you know so I want something clean and easy. GNOME fits my needs rather well at the moment.