OK so I originaley made this to have a simple bluish wallpaper that sorta fit the trend for blue in Kubuntu and a matching grub splash........(it's made with a limited palet and works good when converted to grub specks)........and looks neet as sutch + it goes nice and transparent with the cube
[img width=400 height=300]http://i29.photobucket.com/albums/c291/vinnywright/3.png[/img]
then wile looking at MoonRise's Lynx I thought Hummm that would look good on this so...........
[img width=400 height=300]http://i29.photobucket.com/albums/c291/vinnywright/3-1.png[/img]
I hope you dont mind MoonRise but I thought it looked so nice and basick that I had to share
for me..........it's gowing in storage for upgrade day.............LOL
O and speeking of grub splash imiges if you have ImageMagick installed hears a nice little shell script that will batch prosess .jpg .png & .xpm to the proper settings for a grub splash.
can't remember whare I found it but thare ya go.
you just put the script in a folder with the images for converting and run it
☯VINNY☯
[img width=400 height=300]http://i29.photobucket.com/albums/c291/vinnywright/3.png[/img]
then wile looking at MoonRise's Lynx I thought Hummm that would look good on this so...........
[img width=400 height=300]http://i29.photobucket.com/albums/c291/vinnywright/3-1.png[/img]
I hope you dont mind MoonRise but I thought it looked so nice and basick that I had to share
for me..........it's gowing in storage for upgrade day.............LOL
O and speeking of grub splash imiges if you have ImageMagick installed hears a nice little shell script that will batch prosess .jpg .png & .xpm to the proper settings for a grub splash.
Code:
#!/bin/bash FILE_NO="1" for i in *.jpg *.png *.xpm do echo Converting $i convert $i -resize 640x480 -colors 14 -depth 8 $FILE_NO.xpm.gz FILE_NO=`expr $FILE_NO + 1` done
you just put the script in a folder with the images for converting and run it
☯VINNY☯
Comment