El següent script carrega una imatge de fons a l’escriptori de Gnome
#!/bin/bash gconftool-2 -t str -s /desktop/gnome/background/picture_filename /home/alumne/imatges/.fons_ins.jpg; gconftool-2 -t str -s /desktop/gnome/background/picture_options stretched # posibles valores “none”, “wallpaper” (mosaico), “centered”, “scaled”, “stretched”
La comanda gconftool-2 permet gestionar la configuració de Gnome.
El paràmetre -t indica el tipus de paràmetre (String a l’exemple) […]