Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
TEXT
19
change background
Guest on 24th January 2023 01:56:55 PM
while [ 1 ]; do
num=`ls ~/Backgrounds/* | wc -l`
rand=`jot -r 1 1 $num`
i=0
for f in ~/Backgrounds/*; do
if [ $i = $rand ]; then
gconftool-2 -s -t string /desktop/gnome/background/picture_filename $f
fi
i=$(( $i+1 ))
done
sleep 900
done
Raw Paste
while [ 1 ]; do num=`ls ~/Backgrounds/* | wc -l` rand=`jot -r 1 1 $num` i=0 for f in ~/Backgrounds/*; do if [ $i = $rand ]; then gconftool-2 -s -t string /desktop/gnome/background/picture_filename $f fi i=$(( $i+1 )) done sleep 900 done
Login
or
Register
to edit or fork this paste. It's free.
">