Find the answer to your Linux question:
Results 1 to 3 of 3
I've been trying to get some sort of light-weight eyecandy set up for my netbook by playing with docks, and have had no success, so I have decided to try ...
  1. #1
    Linux Newbie
    Join Date
    Jul 2008
    Location
    Anaheim, CA
    Posts
    114

    Adesklets in Ubuntu, GNOME, eee 1000HA

    I've been trying to get some sort of light-weight eyecandy set up for my netbook by playing with docks, and have had no success, so I have decided to try adesklets. I installed via the terminal (sudo apt-get install adesklets), and it installed. The guide I followed in Ubuntu's community documentation said to install via terminal, add a desklet or two, and go into Startup Applications, and add an application with the command "adesklets --nautilus" for a GNOME system. Which I did, with a desklet installed properly, which I can confirm because a run of adesklets --nautilus in the command line produced the weatherforecast desklet I had installed.

    I tried setting up the command in Startup Applications to no avail, and even set up a script to start with the command as follows:

    Code:
    sleep 5
    adesklets --nautilus
    using a sleep command to delay the startup of adesklets until my internet connected, if it does. This didn't work either. So, could anybody help walk me through this, pointing out anything I did wrong? To recap: I had adesklets installed properly, and the desklet was installed properly, too, but it won't run properly on startup.

  2. #2
    Linux Guru jmadero's Avatar
    Join Date
    Jul 2007
    Location
    California
    Posts
    1,958
    for the script you need to do two things:

    should look like this:

    #/bin/bash
    sleep 5
    adesklets --nautilus
    and then you need to do

    chmod a+x on the file from terminal to make it executable
    Bodhi 1.3 & Bodhi 1.4 using E17
    Dell Studio 17, Intel Graphics card, 4 gigs of RAM, E17

    "The beauty in life can only be found by moving past the materialism which defines human nature and into the higher realm of thought and knowledge"

  3. #3
    Linux Newbie
    Join Date
    Jul 2008
    Location
    Anaheim, CA
    Posts
    114
    Thanks, it worked. I didn't know about "#/bin/bash"

Posting Permissions

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