Results 1 to 8 of 8

Thread: [SOLVED] Nice/ Smooth Login

  1. #1
    Join Date
    Oct 2007
    Beans
    88
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    [SOLVED] Nice/ Smooth Login

    Hi Guys,

    is it possible to smoothen the login in ubuntu. every time I start ubuntu the awn icons float into the bar, there are fragments loading and the desktop turns black for a short time.

    Well I use compiz.( just as a info )

    It would be very nice if someone could help.Thanks

    oh wii

  2. #2
    Join Date
    Oct 2006
    Location
    Cologne, Europe
    Beans
    2,570
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Nice/ Smooth Login

    Write yourself a script to load everything with a short delay.

    Like this:
    Code:
    #!/bin/bash
    sleep 5
    compiz &
    while [ -z $(ps -o comm= -C compiz.real) ]; do
      sleep 2
    done
    avant-window-navigator &

  3. #3
    Join Date
    Oct 2007
    Beans
    88
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Nice/ Smooth Login

    wouldnt that mean that everything loads twice.

    since I but it into the sessions manager.

    could you also write how to implement it I mean how do I auto run the scrpit
    Last edited by Ohwii; May 21st, 2008 at 05:50 PM.

  4. #4
    Join Date
    Oct 2006
    Location
    Cologne, Europe
    Beans
    2,570
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Nice/ Smooth Login

    You have to remove AWN's separate entry from the autostarted programs of course.
    And choose None under System → Preferences → Appearance → Visual Effects

  5. #5
    Join Date
    Oct 2007
    Beans
    88
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Nice/ Smooth Login

    Ive written the script and browsed to the file in the sessions manager.

    Code:
    #!/bin/bash
    sleep 5
    compiz &
    while [ -z $(ps -o comm= -C compiz.real) ]; do
      sleep 2
    done
    avant-window-navigator &
    
    sleep 2 cairo-clock &
    but it doesnt work?

    I mean how can I let it auto run

  6. #6
    Join Date
    Oct 2006
    Location
    Cologne, Europe
    Beans
    2,570
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Nice/ Smooth Login

    First of all
    Code:
    sleep 2 cairo-clock &
    won't work this way.
    But there's no need to delay anything further after Compiz anyway.

    Try this:
    Code:
    #!/bin/bash
    sleep 5
    compiz &
    while [ -z $(ps -o comm= -C compiz.real) ]; do
      sleep 2
    done
    avant-window-navigator &
    cairo-clock &
    Then save it e.g. as 'compiz-start' in your home directory.
    Afterwards you have to make it executable:
    Code:
    chmod u+x compiz-start
    Then test it:
    Code:
    ./compiz-start
    Finally let GNOME run the script on startup.

  7. #7
    Join Date
    Oct 2007
    Beans
    88
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Nice/ Smooth Login

    Works nice, but still the Awn creates fragments of white bars and the cairo clock is also only fragmented.

    The good part is that the icons are not flying anymore. =D>

    thank a lot for your time. If you have some other solution to the smoothening please let me know.

    bye

    oh wii

  8. #8
    Join Date
    Oct 2006
    Location
    Cologne, Europe
    Beans
    2,570
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Nice/ Smooth Login

    I'm sorry, I am using neither AWN nor Cairo-Clock, so I can't say much about them.

    Btw: if you like Cairo-Clock, you might want to try Screenlets.

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
  •