2013-05-24 22:14:09 +00:00
|
|
|
# this is notes for video: http://www.youtube.com/watch?v=sxwYmd8vadQ
|
|
|
|
|
|
|
|
|
2012-12-28 06:25:29 +00:00
|
|
|
# hotkey
|
|
|
|
------------
|
|
|
|
bash -c 'mateconftool-2 --type string --set /desktop/mate/background/picture_filename "$(find ~/Pictures/Wallpapers -type f | shuf -n1)"'
|
|
|
|
|
|
|
|
|
|
|
|
# note: the reason we are not using cron is because theres a bug in mateconftools/gconftools
|
|
|
|
# that doesnt allow it to, there is a workaround but alot of hassel
|
|
|
|
|
|
|
|
# script to auto change wallpaper
|
|
|
|
---------------------------------
|
|
|
|
#!/bin/bash
|
|
|
|
while true; do
|
|
|
|
|
|
|
|
# in seconds
|
|
|
|
sleep 3600
|
|
|
|
|
|
|
|
mateconftool-2 --type string --set /desktop/mate/background/picture_filename "$(find ~/Pictures/Wallpapers -type f | shuf -n1)"
|
|
|
|
|
|
|
|
done
|