Sep 22

Bootsplash themes gallery

I was installing a new kernel and wanted a bootsplash theme. So I installed the splash themes packages:
emerge media-gfx/bootsplash-themes media-gfx/splash-themes-gentoo media-gfx/splash-themes-livecd

But then I dearly missed an overview of all the themes to choose one. I found no splash-theme selector or anything, so it seemed I had to do it myself. Fortunately the themes are fairly ordered and nicely named, one can easily create a little gallery of those:

mkdir /tmp/pics
cd /tmp/pics
for i in `find /etc/splash |grep -i 1024x768 |grep -i cfg| sed -e 's/\.\///g'|xargs cat |grep -i pic=|awk -F= '{print $2}'`; do cp $i /tmp/pics/${i//\//_} ; done
rename '_etc_splash_' '' *
rename '_images' '' *

The last two lines are just to create a little bit nicer names. Now you have a gallery of the silent and verbose images of each theme (that has an 1024x768 cfg) in /tmp/pics. Have fun selecting your favorite theme.

Here is the output gallery:

Share

Sep 02

picasa and eos 400d raws

Picasa is quite a nice tool. Even though it works in linux only with an ugly wine-workaround it delivers quite a nice picture experience. However, there is quite an annoying drawback: it can't handle the raw image files of my eos 400d(Digital Rebel XTi). The CR2 raw files are split in four in picasa. Obviously those problems exist for a while now as I have found the earliest mentions of this dated back to September '06. Hopefully Google will correct this behaviour in the near future, because I'd rather keep my images in raw format than in jpegs.

Share