
Konqueror Navigation Icons
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
13 years ago
You can install from kde-control-center.
scummos
13 years ago
#!/bin/bash
# Install script for the navigation icons.
# Just a little bit of scripting, of course it´s GPL.
# USAGE OF SCRIPT IS ON YOUR OWN RISK. THERE´S NO WARRANTY AT ALL.
echo -e "This script will install the navigation Icons. \033[1m\033[38mIt will overwrite your old navigation icons.\033[0m To continue, press Enter; to abort, press Strg+C."
read enter
echo "Please enter the full name of your currently used iconset. If you aren´t sure, look in $HOME/.kde/icons which is the exact name of your theme.
Below all iconsets found in $HOME/.kde/share/icons are listed."
list=$(ls $HOME/.kde/share/icons)
echo
echo -e "\033[1m\033[34m$list\033[0m"
echo
read icontheme
if [ "$icontheme" ]; then
ls $HOME/.kde/share/icons |grep "$icontheme" > /dev/null || nicfnd=1
if [ $nicfnd ]; then echo "ERROR: $icontheme is not a valid icontheme. Aborting."; exit 0; fi
else echo "You have to enter an icon theme. Aborting." && exit 0; fi
icontheme=$(echo $HOME/.kde/share/icons/"$icontheme")
echo "copying..."
cp -f -v 16x16/actions/* "$icontheme"/16x16 || check=1
cp -f -v 22x22/actions/* "$icontheme"/22x22 || check=1
cp -f -v 32x32/actions/* "$icontheme"/32x32 || check=1
cp -f -v 48x48/actions/* "$icontheme"/48x48 || check=1
#cp -f 56x56/actions/* "$icontheme"/56x56 || check=1
cp -f -v 64x64/actions/* "$icontheme"/64x64 || check=1
#cp -f 72x72/actions/* "$icontheme"/72x72 || check=1
#cp -f 96x96/actions/* "$icontheme"/96x96 || check=1
cp -f -v 128x128/actions/* "$icontheme"/128x128 || check=1
echo -n " ... done."
echo
if [ ! $check ]; then echo "Installation successfull. Do you want to run kbuildsycoca now? [any input to run, enter to skip]"; else echo "Installation FAILED! See the output above to fix the error. Probably you have entered a wrong icon set name."; fi
read ksc
if [ $ksc ]; then kbuildsycoca || check=1; fi
Report
vinokurov
13 years ago
Are they generated by resizing of large ones or they were drawn separately?
Is there any link to the repository with SVG sources of them?
PS: I thought that Oxygen will be default theme for KDE4
Report
dedmopozzz
13 years ago
Report
furyz
13 years ago
thx for the icons.
Report
dedmopozzz
13 years ago
Report
blaster999
13 years ago
Report
fyrer
13 years ago
Report
dedmopozzz
13 years ago
Report
dedmopozzz
13 years ago
not refrain :)
Report
blaster999
14 years ago
Report
dedmopozzz
14 years ago
Report
LordBernhard
14 years ago
plz don't be angry with me, but i'm new to this themeing thing ^^
ps: great icons
Report
dedmopozzz
14 years ago
For example : Copy the contents of a folder in ~/.kde/share/icons/YouIconsTheme/32x32/actions/
Report