You are not logged in.
Pages: 1
the http://drapes.mindtouchsoftware.com/ can randomly chnage wallpaer, but I pacman -Ss drapes can't found.
So is there any software work this way?
Offline
I'm not sure if nitrogen can do this, it's best you try it out. If you want a drapes package in aur ask in the aur request section of the forum.
Offline
Feh can do this
Offline
If you like to change wallpapers you can use wallpapoz , available in aur. I used that earlier with Ubuntu installation.
Offline
I created a file, called wallpaper.sh, and have my .xinitrc run it when I log into X
=
How can I run wallpaper.sh when I log into X?
write like this in .xinitrc file ?
==
sh /home/ning/wallpaper.sh
==
@syntaxerrormmm
I just use Archlinux in a half month ago, maybe I can do this job later.
Offline
Or you can just have Cron do it for you on a regular basis,
why download more software when what you need is already built in!
Hofstadter's Law:
It always takes longer than you expect, even when you take into account Hofstadter's Law.
Offline
I follow the wiki(http://wiki.archlinux.org/index.php/Feh#Random_Background_Image)
but it seems this script crash natuius down, isn't it?
==
#!/bin/bash
WALLPAPERS="$HOME/path_to_your_wallpapers"
ALIST=( `ls -w1 -B --ignore=*.sh $WALLPAPERS` )
RANGE=${#ALIST[*]}
SHOW=$(( $RANDOM % $RANGE ))
feh --bg-scale $WALLPAPERS/${ALIST[$SHOW]}
Last edited by ning (2008-12-11 15:19:16)
Offline
You should click on 'Show more details' and see what it says, but I suspect it has something to do with Nautilus and Feh conflicting with each other. If you didn't already know, Nautilus sets the background wallpaper too.
I don't use Nautilus and I use that script every day just fine.
Offline
Pages: 1