J-B> un ptit tux c'est agreable ....

C'est migno et je l'ai ajouté dans ma liste de wallpaper....

Et puisque qu'on parle de wallpaper il y a quelque jour j'ai fait un
script rapide pour avoir une image de fond au hasard. Il vous faudra
changer le chemin d'accès a vos images bien sûr.

A+

Ivan


Linux-Azur :      http://www.linux-azur.org
Désinscriptions: http://www.linux-azur.org/liste.php3
**** Pas de message au format HTML, SVP ****
#!/usr/bin/perl -w
use strict;

my @array = glob ("/home/ivank/pic/wallpaper/*");
my $count = @array;
my $random = rand $count;
my $file = $array[$random];
system ("xloadimage -onroot -center -quiet -border black $file");

Reply via email to