


Fonts by tanra 3 comments
Keep it up, please, on Wallpapers section ! - Jan 03 2013

Fonts by gluk 5 comments
Voted UP! - Jun 10 2011
Wallpaper Other by sivcarina 8 comments

LO Splash Screens by mdh3ll 12 comments
Voted good! - Apr 10 2011

Wallpapers Ubuntu by maria4955 3 comments

GTK2 Themes by Hadret 9 comments

GDM Themes by JmN2k1 5 comments
And great also as background! - Jun 08 2005

Wallpapers Gnome by ericbobbitt 3 comments
But I would like to see a transparent version. I love transparences...
...not only for blue lovers :) - Jan 04 2005

Fonts by schultz-dk 5 comments
wget -cq http://www.highfonts.com/download.asp?fontID=$COUNTER - Oct 22 2004

Fonts by schultz-dk 5 comments
------------------------------------------------------
# Description:
# Very simple script to download all free fonts from http://www.highfonts.com
# Will work if they don't change their site.
#
# Use:
#
# The script will download the fonts in the directory where it is executed.
#
#!/bin/bash
TOTAL=3218
COUNTER=$TOTAL
INSTALLED=`less ./count`
if [ "$INSTALLED" == "" ] ; then
INSTALLED=$TOTAL
fi
until [ "$COUNTER" == "$INSTALLED" ] ; do
let COUNTER-=1
done
until [ $COUNTER -lt 1 ]; do
clear
echo "Starting the download of free fonts from highfonts.com"
echo "$TOTAL fonts will be downloaded..."
echo "Please wait... (This might take a while...)"
echo
echo "Progress"
echo "-------------------------------------------"
echo "Waiting to download : $COUNTER fonts"
echo "-------------------------------------------"
wget -q http://www.highfonts.com/download.asp?fontID=$COUNTER
rm -rf ./count
echo $COUNTER >> ./count
let COUNTER-=1
done
echo "Done."
------------------------------------------------------ - Oct 22 2004

Fonts by schultz-dk 5 comments
until [ $COUNTER -lt 1 ]; do
clear
echo "Starting the download of free fonts from highfonts.com"
echo "$TOTAL fonts will be downloaded..."
echo "Please wait... (This might take a while...)"
echo
echo "Progress"
echo "-------------------------------------------"
echo "Waiting to download : $COUNTER fonts"
echo "-------------------------------------------"
wget -q http://www.highfonts.com/download.asp?fontID=$COUNTER
rm -rf ./count
echo $COUNTER >> ./count
let COUNTER-=1
done
echo "Done." - Oct 22 2004