+ Reply to Thread
Results 1 to 8 of 8

Thread: Automatic wallpaper change tool/script/utility

  1. #1
    Super Loser Apoorv Khatreja's Avatar
    Join Date
    Nov 2006
    Location
    Delhi
    Age
    19
    Posts
    1,363

    Default Automatic wallpaper change tool/script/utility

    I have a really large and nice collection of wallpapers. I want a script/utility which can automatically choose a random wallpaper from a folder and make it my wallpaper. I use KDE in PCLinuxOS.
    | RutSum |

  2. #2
    Regulars
    Join Date
    Sep 2005
    Location
    Bombay
    Posts
    2,249

    Default Re: Automatic wallpaper change tool/script/utility

    HACK:
    Set your wallpaper to a symlink
    Simple shell script for setting this link to a random image in a directory
    Cron job to call this script every X minutes ;)

  3. #3
    Super Loser Apoorv Khatreja's Avatar
    Join Date
    Nov 2006
    Location
    Delhi
    Age
    19
    Posts
    1,363

    Default Re: Automatic wallpaper change tool/script/utility

    Ok, made a symlink for my wallpaper directory. Now what?

    Found a shell script here

    automatic background changer - Ubuntu Forums

    But this is for GNOME.
    Last edited by Apoorv Khatreja; January 23rd, 2008 at 02:49 PM. Reason: Automerged Doublepost
    | RutSum |

  4. #4
    Super Loser Apoorv Khatreja's Avatar
    Join Date
    Nov 2006
    Location
    Delhi
    Age
    19
    Posts
    1,363

    Default Re: Automatic wallpaper change tool/script/utility

    Waiting for somebody to write that shell script for me .
    | RutSum |

  5. #5
    admin's Avatar
    Join Date
    Aug 2004
    Location
    Gurgaon
    Age
    28
    Posts
    32,305
    Blog Entries
    14

    Default Re: Automatic wallpaper change tool/script/utility

    a lot of tools exist in windows for this... linux. i thought kde was so overloaded with features that it should have been present already.

    http://www.linuxquestions.org/questi...2/#post1036171
    Last edited by admin; January 23rd, 2008 at 08:06 PM. Reason: Automerged Doublepost
    2GB Online Storage Free! | Star Sports Formula-1 Appeal | Become a fan of India Broadband on Facebook | India Broadband Forum might soon switch to this forum software

  6. #6
    Super Loser Apoorv Khatreja's Avatar
    Join Date
    Nov 2006
    Location
    Delhi
    Age
    19
    Posts
    1,363

    Default Re: Automatic wallpaper change tool/script/utility

    Heh. Found it myself about an hour ago. Is IBF horribly slow for other MTNL guys too?
    | RutSum |

  7. #7
    Regular
    Join Date
    Dec 2007
    Location
    India
    Posts
    112

    Default Re: Automatic wallpaper change tool/script/utility

    You can also use this method. Place your wallpaper as mywall.jpeg in your system wallpaper directory. try this script( assume you have 1500 wallpapers collection otherwise change the number) . This is just an idea. Obviuosly you need to modify this to suit your needs.

    #!/bin/bash
    DIRWALL="wallpaper collection directry"
    DIRSYS="system wallpaper direcory"

    A=`date +%s`
    RAN=`expr \( $A % 1500 \) + 1`
    cd $DIRWALL
    TMPWL=`ls -A | cat -n| awk -v RAN1=$RAN '{if ($1 == RAN1) print $2}'`
    cp -af $TMPWL $DIRSYS/mywall.jpeg
    Last edited by firearm12; January 26th, 2008 at 04:21 AM.
    I walk on the wild side, I laugh in the face of danger. -- Lion King(1994)

  8. #8
    Good Times with GNU/Linux prakash_mvpa's Avatar
    Join Date
    Jan 2008
    Location
    Muvattupuzha,Kerala
    Age
    31
    Posts
    1,084

    Default Re: Automatic wallpaper change tool/script/utility

    I did a search with apt and found these many softwares for wallpaper changer in Gnome
    Wallpaper-tray
    wallpaper changing utility for GNOME
    This utility sits in your GNOME Panel Notification Area. It sets a random
    wallpaper from a list of directories either at login, on a regular basis
    or on demand.

    Homepage: .: planetearthworm :. - bringing down the black vale

    Drapes:
    a desktop wallpaper management application for the GNOME desktop
    The aim of drapes is to complete (or replace) the built-in GNOME desktop
    wallpapers selection tool. It can be configured as a tray application or as a
    panel applet. The bigest selling point of drapes is the ability to rotate
    wallpapers on a timely basis. It strives to be as simple as possible and
    fits in the rest of the GNOME 2 desktop.

    Project Homepage: Desktop drapes: GNOME wallpaper manager
    http://getgnulinux.org
    "faithfreedom" -google for that.

+ Reply to Thread

Similar Threads

  1. Automatic router reboot script on Vista
    By aseembehl in forum MTNL Broadband
    Replies: 12
    Last Post: March 20th, 2009, 10:07 PM
  2. Automatic login script for tata ul 512 connection
    By visions in forum Tata Indicom Broadband
    Replies: 0
    Last Post: June 4th, 2007, 06:35 PM
  3. Automatic Reboot Script For Ut-304r2
    By boygr8 in forum MTNL Broadband
    Replies: 0
    Last Post: January 17th, 2007, 07:04 PM
  4. need automatic download tool
    By velu05 in forum Software Discussions
    Replies: 9
    Last Post: January 8th, 2006, 09:05 PM
  5. need automatic download tool
    By in forum BSNL Broadband
    Replies: 0
    Last Post: January 1st, 1970, 04:30 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts