Topic: wallpaper changer GNOME menggunakan shell script
#!/bin/bash
# direktory file background *.jpg
DIR="/home/alisalatiga/Pictures/background"
# perintah randomize menggunakan filter *.jpg
PIC=$(ls $DIR/*.jpg | shuf -n1)
# perintah pengganti wallpaper
gconftool -t string -s /desktop/gnome/background/picture_filename $PIC




