Here it is how to install them: (I would do an ebuild, but kde devs dont want the icons to be distributed etc etc..ok..we dont mind:P)
NOTE: you need Inkscape!!!
First of all, we'll download the latest icons in kde's svn (type in a terminal):
- Code: Select all
$ svn co svn://anonsvn.kde.org/home/kde/trunk/playground/artwork/Oxygen
Then:
- Code: Select all
$ cd Oxygen/theme/svg
Now we need to download this script, to convert the icons from .svg
to .png (I found this script in AUR from ArchLinux):
- Code: Select all
$ wget http://aur.archlinux.org/packages/kdeicons-oxygen-svn/kdeicons-oxygen-svn/generate_oxy_theme.sh
Now we are going to download a blue version of the folder icons (as it looks better):
- Code: Select all
$ wget http://aur.archlinux.org/packages/kdeicons-oxygen-svn/kdeicons-oxygen-svn/folder_blue_empty.svg.gz
Lets extract them:
- Code: Select all
$ gzip -d folder_blue_empty.svg.gz
Lets copy them:
- Code: Select all
$ cp folder_blue_empty.svg filesystems/folder_empty.svg
$ cp folder_blue_empty.svg filesystems/folder_open.svg
Now we need to fix some name related things:
- Code: Select all
$ mv actions/small/down.svg actions/small/down_small.svg
$ mv actions/small/up.svg actions/small/up_small.svg
$ mv actions/small/forward.svg actions/small/forward_small.svg
Now lets run the script to convert the files (YOU NEED INKSCAPE!!!):
- Code: Select all
$ bash generate_oxy_theme.sh
Now:
- Code: Select all
$ cd ../oxygen
Run this to remove unnecessary files:
- Code: Select all
$ find . -name .svn -exec chmod +w -R {} +
$ find . -name .svn -exec rm -R {} +
Now you need to get root acess:
- Code: Select all
$ su
Lets create the dir where the icons will be placed:
- Code: Select all
mkdir -p /usr/kde/3.5/share/icons/oxygen
Now lets move the icons there:
- Code: Select all
mv * /usr/kde/3.5/share/icons/oxygen
Now the icons are installed!!!
Hope you like! Here is a screenshot of the icons in my desktop:
[img=http://img356.imageshack.us/img356/3360/oxygenri3.th.png]
