


Full Icon Themes by DanRabbit 330 comments
Second, you can't say they are inspired on Crystal when icons has not any glass effect.
Finally, SVG sizes, you should place all SVG files on Scalable, and then create PNGs file with sizes you want (16, 24, 32, 64 px, etc). I don't know why resizes SVGs one by one in 16, 24, 48 px.
Well that my recommendation as an icon developer (Crashbit Author). - Sep 23 2008

Full Icon Themes by igancuhz 98 comments

Full Icon Themes by igancuhz 98 comments
As we know Tango Project is under Creative Commons, and Crashbit uses the LGPL License. They both are not compatible.
That's why it was removed, but don't worry... I working in a new HOME icon. - May 25 2008

Full Icon Themes by igancuhz 98 comments

Full Icon Themes by igancuhz 98 comments

Full Icon Themes by igancuhz 98 comments
Thanks! - Jan 20 2008

Full Icon Themes by igancuhz 98 comments

Full Icon Themes by igancuhz 98 comments
If you want an uncompleted icon theme we gonna publish one. OK! - Jan 16 2008

Full Icon Themes by igancuhz 98 comments

Full Icon Themes by igancuhz 98 comments

GTK2 Themes by permafrost91 10 comments

Nautilus Scripts by Adaron 54 comments
destinazione=`zenity --list --title "$title_destination" --text "$destination" --radiolist --column " " --column "Dispositivos" FALSE /media/$options` - Oct 11 2007

Nautilus Scripts by Adaron 54 comments
# Send-To
##########################################################################
# Nautilus "Send to" Script #
##########################################################################
# #
# Created by Mattia Galati (Adaron) #
# first improvement and translation by Christopher Bratusek (Chrispy) #
# #
##########################################################################
# Language Settings ---------------------------------------------------- #
destination='Seleccione destino:'
title_destination='Enviar archivos a:'
copy='Copiando...'
title_copy='Por favor espere...'
success='Los archivos se han copiado correctamente.'
title_success='Correcto'
errors='Ha ocurrido un error.'
title_errors='Error'
no_writable='El destino no existe o no se puede escribir en el.'
title_no_writable='Error'
# End of language settings ----------------------------------------------#
##########################################################################
devices=`ls -m /media/`
vv=${devices//cdrom?, /}
vd=${vv//cdrom, /}
options=${vd//, / FALSE /media/}
destinazione=`zenity --list --title "$title_destination" --text "$destination" --radiolist --column " " --column "Device" FALSE /media/$options`
if [[ -w $destinazione ]]; then
cp $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS $destinazione | zenity --progress --pulsate --auto-close --title="$title_copy" --text="$copy"
if (( $? == 0 )); then
zenity --info --text="$success" --title "$title_success";
else zenity --info --text="$errors" --title "$title_errors";
fi
else zenity --info --text="$no_writable" --title "$title_no_writable";
fi - Oct 11 2007

Nautilus Scripts by Adaron 54 comments
(cp $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS $destination)|zenity --progress --pulsate --auto-close --title=Copying... --text="Please wait..." - Oct 11 2007

Nautilus Scripts by Adaron 54 comments
# ----------------------------------------
# Nautilus "Enviar a" Script
# ----------------------------------------
#
# Created by Mattia Galati (Adaron)
# First improvement by Christopher Bratusek (Chrispy)
devices=`ls -m /media/`
vv=${devices//cdrom?, /}
vd=${vv//cdrom, /}
options=${vd//, / FALSE /media/}
destination=`zenity --list --title "Enviar archivos a:" --text "Seleccione destino:" --radiolist --column " " --column "Dispositivos" FALSE /media/$options`
if [[ $destination == "" ]]; then
exit
fi
cp $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS $destination
if (( $? == 0 )); then
zenity --info --text="Los archivos se han copiado correctamente." --title "Correcto";
else zenity --info --text="Ha ocurrido un error." --title "Error";
fi - Oct 11 2007

Icon Sub-Sets by rowancompsciguy 6 comments