You are not logged in.
Pages: 1
Hi all,
I try to have my wallpaper changing every 10 minutes.
It's not working.
When I change the settings, it changes the 1st wallpaper after 10 minutes (as normal),
and then it keeps the same wallpaper, without any change.
If I change the time, let say to 9 minutes, and back to 10 minutes, same situation as
above.
I am using Xfce 4.10 on Funtoo.
Thanks for your help.
Offline
I think other people have reported this problem already. If you want you could use a bash script I made to change my wallpapers, or a variant of it anyway…
Full version is on the Arch forum: https://bbs.archlinux.org/viewtopic.php?pid=1097196
And a simpler version could be…
#!/bin/bash
d=~/images/wallpapers
delay=1800
cd $d
list=($(find . -type f | shuf))
index=0
while true; do
pic=${list[$index]}
xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-path -s $d/$pic
sleep $delay
index=$((index+1))
if (( index == ${#list[*]} )); then
index=0
fi
done
Offline
I have seen this occasionally. Logging out and back in has fixed for me each time.
Offline
Thanks to all.
I am going to try stqn' script.
To ozjd, it's not occasionally, it's permanent. Your method
didn't work for me.
Offline
I've been using Wallpapoz on both my desktop and my laptop for several years, now, with good effect. I originally planned to have a different wallpaper for each workspace, but ended up with the same, randomly-cycling wallpaper on each.
Registered Linux user #470359
Permanently recovered BOFH
Any advice in this post is worth exactly what you paid for it.
Offline
Pages: 1
[ Generated in 0.008 seconds, 7 queries executed - Memory usage: 529.7 KiB (Peak: 530.98 KiB) ]