Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 42

Thread: [SOLVED] CLI alternatives and minimalistic WM

  1. #11
    Join Date
    Jul 2006
    Location
    Germany
    Beans
    1,805

    Re: CLI alternatives and minimalistic WM

    Quote Originally Posted by sujoy View Post
    yes i agree
    however, i would like to login to x by default, rather than having to do a startx everytime.
    That's easy, add this to the end of ~/.profile:
    Code:
    if [ -z "$DISPLAY" ] && [ $(tty) == /dev/tty1 ]; then
      startx
    fi

  2. #12
    Join Date
    Nov 2007
    Beans
    233
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: CLI alternatives and minimalistic WM

    I would agree with urukrama's recommendation of SLiM. It only has a few dependencies and supports (experimentally ) logging into multiple desktop environments/window managers.

  3. #13
    Join Date
    Oct 2007
    Location
    $HOME
    Beans
    631

    Re: CLI alternatives and minimalistic WM

    Quote Originally Posted by mali2297 View Post
    That's easy, add this to the end of ~/.profile:
    Code:
    if [ -z "$DISPLAY" ] && [ $(tty) == /dev/tty1 ]; then
      startx
    fi
    can u kindly explain the code snippet?

  4. #14
    Join Date
    Feb 2007
    Location
    The hills of appalachia
    Beans
    966

    Re: CLI alternatives and minimalistic WM

    You may be interested in reading A day without X


    Would you be able to survive one full day without using the X server? Linux offers us a wide assortment of CLI based tools which use curses and/or framebuffer for functional user interfaces. There is no reason why you shouldn’t be able look up stuff online, read your email, look at pictures, watch movies and listen to music as you are trying to configure X.
    If you think you're free, there's no escape possible. Ram Dass

  5. #15
    Join Date
    Jun 2006
    Location
    Gwangju, Korea
    Beans
    3,479

    Re: CLI alternatives and minimalistic WM

    Quote Originally Posted by sujoy View Post
    can u kindly explain the code snippet?
    Quote Originally Posted by mali2297 View Post
    That's easy, add this to the end of ~/.profile:
    Code:
    if [ -z "$DISPLAY" ] && [ $(tty) == /dev/tty1 ]; then
      startx
    fi
    First, it checks whether the environment variable $DISPLAY is set. If not, then X probably isn't running right now. If $DISPLAY is unset (literally, if the length of its value is zero), then it checks the output of the tty command (see the man page) to see if it's running on the first virtual console. If so, it runs the command startx.

  6. #16
    Join Date
    Jan 2007
    Beans
    Hidden!

    Re: CLI alternatives and minimalistic WM

    BashBurn works well for burning CDs and DVDs.

    http://bashburn.sourceforge.net/

  7. #17
    Join Date
    Nov 2005
    Location
    Left of Vermont
    Beans
    392

    Re: CLI alternatives and minimalistic WM

    @sujoy:
    You might be interested in perusing this thread in the Arch forums. It offers quite a variety of very lightweight, minimalist applications, several of which I use on my old P2/233 laptop that runs Arch.

    http://bbs.archlinux.org/viewtopic.php?id=41168
    If at first you don't succeed, skydiving is not for you.

  8. #18
    Join Date
    Oct 2007
    Location
    $HOME
    Beans
    631

    Re: CLI alternatives and minimalistic WM

    hey guys!

    i installed mpd+ncmpc

    but when i go to browse i dont see any files
    i have one mp3 in the music_directory, but nothing shows up

  9. #19
    Join Date
    Nov 2007
    Beans
    233
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: CLI alternatives and minimalistic WM

    Have you created the database yet?

    Code:
    mpd --create-db

  10. #20
    Join Date
    Feb 2005
    Location
    Pennsylvania; USA
    Beans
    176

    Re: CLI alternatives and minimalistic WM

    Nice to see a fellow arch user.

    I recently switched from xfce4 to fluxbox, and am in much the same situation.

    Here's what I've personally chosen so far.

    Music Player - mpd with Sonata front end
    video player - mplayer
    chat client - pidgin
    file browser - Rox (You can even get it to control the desktop)
    Torrents - Transmission
    Web browser - firefox-nightly (firefox3 from AUR)

    And for a login manager that's lightweight, try SLiM.
    http://slim.berlios.de/

Page 2 of 5 FirstFirst 1234 ... LastLast

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
  •