notos
June 9th, 2005, 01:48 PM
whell i was bored ... so i opened the gimp to make a logo and ... yay i dont have "cool" fonts :( so i go too google and googled for free fonts and started to download files yay! too much files to install manually ... yay!
so with a bit of PHP-Cli i got every font in that web page (1001freefonts.com) so now you too can download 2500+ fonts to your desktop with this :)
First of download Atached File (font.txt.gz ) un gz it with
$ gunzip font.txt.gz
now you ave two options one is use d4x and other is wget
** Download these in a folder like ~/fonts cause you will be downloading 2500 zip files you dont want them in ~/ :P **
for d4x select: file-> Find Links In File and select of course font.txt
then click will apear a list of links simply click ok ;)
if you are a linux guru ... :P or want to use wget
just type
$ wget -i font.txt
now you ve got like 2500 zip files if you dont want to unzip them one by one you can do this
$ for i in *; do unzip -n "$i"; done
after a bit of time you be got tons of files so now you can
$ mv *.ttf ~/.fonts
$ mv *.TTF ~/.fonts
or move them to /usr/share/fonts to install the system wide :)
well i think thats all :)
so with a bit of PHP-Cli i got every font in that web page (1001freefonts.com) so now you too can download 2500+ fonts to your desktop with this :)
First of download Atached File (font.txt.gz ) un gz it with
$ gunzip font.txt.gz
now you ave two options one is use d4x and other is wget
** Download these in a folder like ~/fonts cause you will be downloading 2500 zip files you dont want them in ~/ :P **
for d4x select: file-> Find Links In File and select of course font.txt
then click will apear a list of links simply click ok ;)
if you are a linux guru ... :P or want to use wget
just type
$ wget -i font.txt
now you ve got like 2500 zip files if you dont want to unzip them one by one you can do this
$ for i in *; do unzip -n "$i"; done
after a bit of time you be got tons of files so now you can
$ mv *.ttf ~/.fonts
$ mv *.TTF ~/.fonts
or move them to /usr/share/fonts to install the system wide :)
well i think thats all :)