Root/
| Source at commit 173f1fb1ea163351f940b681b0cb45f6e5eafd3f created 2 years 9 months ago. By Luciano M. F. Rocha, search for DBUS session server address | |
|---|---|
| 1 | #!/bin/bash |
| 2 | cmd="gconftool-2 -s /desktop/gnome/background/picture_filename --type string" |
| 3 | dir="$HOME/Pictures/backgrounds" |
| 4 | declare -a imgs |
| 5 | |
| 6 | export DBUS_SESSION_BUS_ADDRESS=unix:abstract=$(netstat -xl | grep -o '/tmp/dbus.*' | head -1) |
| 7 | imgs=($dir/*) |
| 8 | i=$(($RANDOM*${#imgs[*]}/32768)) |
| 9 | image="${imgs[$i]}" |
| 10 | $cmd "$image" |
| 11 | |
