Results 1 to 10 of 11

Thread: [SOLVED] Curious AWN / Desktop Behavior at Startup

Hybrid View

  1. #1
    Join Date
    Mar 2006
    Beans
    12

    [SOLVED] Curious AWN / Desktop Behavior at Startup

    Hey -

    Just a little befuddlement on my part here. I'm running 8.04, with all the updates installed, on a Dell Dimension 3000 with a Geforce FX 5200 video card. I'm running Gnome, have Compiz Fusion on to Normal Effects (although I've also tweaked a few Compiz settings in the Advanced Desktop Effects Settings), and have Avant Window Navigator set to start up whenever I boot up the computer.

    Everything is running fine, but each time I boot up, it's as if the computer freezes... but just for a couple seconds. I get most of the desktop, but where Avant Window Navigator should be appearing, all I see is this rectangular white box. Actually, if you watch how AWN loads up the first time, with the bar rising up from the bottom of the screen and all the icons scrolling in from the right... it's as if that animation (for whatever reason), is unable to be shown, so the Desktop just defaults to showing the white block... at least until AWN is ready to be showed.

    There's also a smaller white box (that I have no explanation for), in the upper left corner of the screen.

    This isn't a huge deal, but I would like it fixed RIGHT NOW.

    Anyway, I'm hoping someone out there has some idea why this is happening.

    Oh! I'm also running the nvidia-glx-new drivers that are in the repository... version 169.12, or something.

    If anyone has any idea why this is happening, and a possible fix (assuming it can be fixed), that would be awesome.

    Thanks!

    Eric

    P.S. I'm attaching a made-up screen shot that approximates what I'm talking about (I couldn't actually get a screen shot while the weirdness was happening, so this is as close as I can get). Thanks!
    Attached Images Attached Images

  2. #2
    Join Date
    Nov 2006
    Beans
    67
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Curious AWN / Desktop Behavior at Startup

    Ya I get the same thing as well.

  3. #3
    Join Date
    Oct 2007
    Beans
    135

    Re: Curious AWN / Desktop Behavior at Startup

    his happens because AWN starts before Compiz. A solution is to have an autostart script open Awn after 10 seconds or so instead of immediately. You would also need to figure out the other program that is starting and put that in the script as well.

    Here is an example of such a script.
    Code:
    !# /bin/bash
    
    sleep 10;
    avant-window-navigator &
    You would need to add that to an executable file and add the file to your sessions list.

  4. #4
    Join Date
    May 2007
    Beans
    2

    Re: Curious AWN / Desktop Behavior at Startup

    Sadly the above advice doesn't seem to improve the situation

  5. #5
    Join Date
    Oct 2007
    Beans
    135

    Re: Curious AWN / Desktop Behavior at Startup

    I made a typo. Try:
    Code:
    #! /bin/bash
    
    sleep 10;
    avant-window-navigator &

  6. #6
    Join Date
    Sep 2007
    Beans
    29

    Re: Curious AWN / Desktop Behavior at Startup

    Those of us with slower computers may have to increase the sleep time as well. Mine's 15.

  7. #7
    Join Date
    Mar 2006
    Beans
    12

    Re: Curious AWN / Desktop Behavior at Startup

    Quote Originally Posted by pmaconi View Post
    I made a typo. Try:
    Code:
    #! /bin/bash
    
    sleep 10;
    avant-window-navigator &

    Thanks! That worked for me. Oddly enough, though, once I did that, both white blocks disappeared, the one on the top and the bottom. Problem solved.

    At least for me.

    Thanks again!

Tags for this Thread

Bookmarks

Posting Permissions

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