You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeartwork/IconThemes/ikons
Timothy Pearson 23284c62ab
Fix invalid headers in PNG files and optimize for size
8 years ago
..
16x16 Fix invalid headers in PNG files and optimize for size 8 years ago
22x22 Fix invalid headers in PNG files and optimize for size 8 years ago
32x32 Fix invalid headers in PNG files and optimize for size 8 years ago
48x48 Fix invalid headers in PNG files and optimize for size 8 years ago
64x64 Fix invalid headers in PNG files and optimize for size 8 years ago
README Fix references to user profile directory. 12 years ago
index.theme Use Places category instead of FileSystems category in icon themes 12 years ago

README

iKons - http://users.skynet.be/kbusiness/icon.htm

-> What is it ?

iKons is a high color icon theme for KDE. It features 16x16, 22x22, 32x32, 48x48
and 64x64 icons with full support for transparency (alpha blending).

-> Requirements

KDE 2.0 or more.

-> Installation

 1) Open the KDE-Menu an start the Control Center
 2) Click on "Look and Feel" and "Icons"
 3) Browse to the location of the new icon theme tar.gz file by clicking the small folder button
 4) Click on "Install New Theme" to add the new icons
 5) Click "Apply"
 6) Have fun! :-)
Note:	after installing , right click on the desktop and click on "line up icons" to finish it out
 		or your icons will act strange and look larger that normal (because iKons is a 48x48
		default icon theme, and KDE uses 32x32 icons as default).

-> Altering the toolbar icons (manual)

 Go to /usr/your_id/.trinity/share/icons/iKons/ and change the names of the toolbar icons
 in 16x16/actions and 22x22/actions. There are 4 toolbar icon themes at this time:
 1) iKons (default)
 2) Netscape
 3) QNIX
 4) devel (toolbar icon theme in development)

-> Altering the toolbar icons (with a script) 

 #!/bin/bash

if [ $# -ne 1 ]; then
  echo
  echo "Invoke this script from the iKons directory."
  echo "Give the name of the desired action-icon-theme as parameter:"
  echo "$0 [ netscape | qnix | iKons ]"
  echo
  exit 1
fi

for dir in 16x16 22x22; do
  for icon in `ls $dir/actions/$1*`; do
     new_name=$(dirname $icon)/${icon##*_}
     echo "copying $icon to $new_name"
     cp $icon $new_name
  done
done

-> Contact

mailto:kborrey@skynet.be
http://users.skynet.be/kbusiness/icon.htm