Post contrassegnati da tagGnome

MacBook Santa Rosa + iSight + Cheese / skype(beta) / ekiga

Oh my gosh! iSight works with everything (cheese, ekiga, skype2 beta)

It works!

super mini howto

I don’t know the exact steps I have just done but you can try to:
Leggi il seguito di questo post »

Commenti

Random wallpaper for Gnome

I really love the comic strips of this site: http://pbfcomics.com/
This simple bash script replace your background image with a random strip from the website:

#!/bin/bash
gconftool -s /desktop/gnome/background/picture_options -t string "centered"
while true; do
    wget -q http://pbfcomics.com/`curl -s http://pbfcomics.com/?comic=random | sed -n 's/.*id="topimg" src="([^"]*)".*/1/p'` -O - > current
    gconftool -s /desktop/gnome/background/picture_filename -t string "$PWD/current"
    sleep 1800
done

If you have any enhancement you are welcome ;)

Commenti (2)