Page 3 of 3 FirstFirst 123
Results 21 to 30 of 30

Thread: Looking for a tiling window manager.

  1. #21
    Join Date
    Sep 2008
    Location
    127.0.0.1
    Beans
    Hidden!

    Re: Looking for a tiling window manager.

    Quote Originally Posted by &#32 Greg View Post
    Something you might want to check out is bluetile (just to play with, in case you find ScrotWM not what you were looking for after all).
    Looks cool, I didn't know anything like that existed. I wanted to get away from gnome though, looks cool. I definitely will try it.

  2. #22
    Join Date
    Jan 2009
    Beans
    Hidden!

    Re: Looking for a tiling window manager.

    Quote Originally Posted by ihermit View Post
    Looks cool, I didn't know anything like that existed. I wanted to get away from gnome though, looks cool. I definitely will try it.
    It would probably work nicely en route to pure Xmonad...

  3. #23
    Join Date
    Jan 2007
    Beans
    Hidden!
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Looking for a tiling window manager.

    Quote Originally Posted by Greg View Post
    It would probably work nicely en route to pure Xmonad...
    +1 agree. Xmonad ftw.

  4. #24
    Join Date
    Sep 2008
    Location
    127.0.0.1
    Beans
    Hidden!

    Re: Looking for a tiling window manager.

    I'm playing with dwm right now, it works the same way as scrotwm so it feels familiar.
    Also, since there's no system tray, I need to use a third party app like trayer right?
    I know openbox has an autostart.sh, but how can I autostart applications in dwm/scrotwm?
    Sorry, I know this isn't support, and I know I'm nub.
    Thanks

  5. #25
    Join Date
    Sep 2008
    Location
    127.0.0.1
    Beans
    Hidden!

    Re: Looking for a tiling window manager.

    I'm officially addicted to dwm. I love it.
    I've installed a crunchbang lite system, and removed all the openbox stuff, it comes preinstalled with dwm, so I removed it and then downloaded the source, customized the config file and compiled. Works great!

  6. #26
    Join Date
    Mar 2008
    Location
    Birmingham, UK
    Beans
    Hidden!

    Re: Looking for a tiling window manager.

    How are you starting dwm? Via xinitrc and startx or a login manager (... or some other way)? If via xinitrc there are a couple of possibilities, both amounting to being almost the same.

    The first is just add the programs you want autostarted before the exec dwm line, such as:
    Code:
    # Wallpaper
    eval `cat $HOME/.fehbg` &
    pidgin &
    exec dwm
    The second is to move all that into a script to keep xinitrc looking nice, so you don't need to comment a bunch of stuff if you change window managers. So .xinitrc would look like:
    Code:
    exec $HOME/scripts/startdwm
    Then you need to write a script called (in the case of the above) ~/scripts/startdwm:
    Code:
    #!/bin/bash
    eval `cat $HOME/.fehbg` &
    pidgin &
    exec dwm
    Once you have written the script, make it executable and you're good to go:
    Code:
    chmod +x ~/scripts/startdwm
    Note that if you have not installed dwm as I mentioned in an earlier post (I think), where I have written exec dwm, it would need to be exec /path/to/dwm.

    If you use a login manager... I'm not sure as I've not used one in a while. I should imagine the same basic idea would apply. Possibly you have to make a new .desktop file, and where the command /usr/bin/dwm would go, just point it to the script.
    Desktop: Phenom 955 BE | GA-MA790XT-UD4P | 8GB TG Elite 1600 | BFG GTX 275
    Conky Screenshots | Last.fm | New to Ubuntu?

  7. #27
    Join Date
    Jan 2007
    Beans
    Hidden!
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Looking for a tiling window manager.

    Quote Originally Posted by ihermit View Post
    I'm officially addicted to dwm. I love it.
    I recommend you to use for a while and then change to another tiling. In my case i started to use awesome, then change to dwm, and i'm trying xmonad. I think this is the way you can form an opinion yourself.

    Btw, to customize dwm: http://ubuntuforums.org/showthread.php?t=642808

  8. #28
    Join Date
    Sep 2008
    Location
    127.0.0.1
    Beans
    Hidden!

    Re: Looking for a tiling window manager.

    Quote Originally Posted by m_duck View Post
    How are you starting dwm? Via xinitrc and startx or a login manager (... or some other way)? If via xinitrc there are a couple of possibilities, both amounting to being almost the same.

    The first is just add the programs you want autostarted before the exec dwm line, such as:
    Code:
    # Wallpaper
    eval `cat $HOME/.fehbg` &
    pidgin &
    exec dwm
    The second is to move all that into a script to keep xinitrc looking nice, so you don't need to comment a bunch of stuff if you change window managers. So .xinitrc would look like:
    Code:
    exec $HOME/scripts/startdwm
    Then you need to write a script called (in the case of the above) ~/scripts/startdwm:
    Code:
    #!/bin/bash
    eval `cat $HOME/.fehbg` &
    pidgin &
    exec dwm
    Once you have written the script, make it executable and you're good to go:
    Code:
    chmod +x ~/scripts/startdwm
    Note that if you have not installed dwm as I mentioned in an earlier post (I think), where I have written exec dwm, it would need to be exec /path/to/dwm.

    If you use a login manager... I'm not sure as I've not used one in a while. I should imagine the same basic idea would apply. Possibly you have to make a new .desktop file, and where the command /usr/bin/dwm would go, just point it to the script.
    I am using a login manager, gdm. Upon compiling dwm for the first time, I did create a .desktop file for dwm and it works fine. If I'm using a login manager, will .xinitrc not work? I've done a little bit of digging but I can't find anything.
    Quote Originally Posted by n0dix View Post
    I recommend you to use for a while and then change to another tiling. In my case i started to use awesome, then change to dwm, and i'm trying xmonad. I think this is the way you can form an opinion yourself.

    Btw, to customize dwm: http://ubuntuforums.org/showthread.php?t=642808
    Thanks for the thread, I've already been reading it. The thread's a bit dated, but helpful nonetheless.

  9. #29
    Join Date
    Apr 2008
    Location
    RiceMonsterland, Canada
    Beans
    Hidden!

    Re: Looking for a tiling window manager.

    Quote Originally Posted by ihermit View Post
    I am using a login manager, gdm. Upon compiling dwm for the first time, I did create a .desktop file for dwm and it works fine. If I'm using a login manager, will .xinitrc not work? I've done a little bit of digging but I can't find anything.
    Create a script, like so
    Code:
    #!/bin/bash
    # Add whatever you want to autostart here (don't forget the & after each program)
    trayer &
    nitrogen --restore &
    super-cool-awesome-autostart-this &
    
    # THE BELOW LINE MUST BE LAST
    exec dwm
    Now edit the .desktop file you created, and point to the script at Exec=
    Last edited by RiceMonster; January 24th, 2010 at 07:03 PM.
    Code:
    while true; do echo -n "RiceMonster "; done
    Best thread ever

  10. #30
    Join Date
    Sep 2008
    Location
    127.0.0.1
    Beans
    Hidden!

    Re: Looking for a tiling window manager.

    Quote Originally Posted by RiceMonster View Post
    Create a script, like so
    Code:
    #!/bin/bash
    # Add whatever you want to autostart here (don't forget the & after each program)
    trayer &
    nitrogen --restore &
    super-cool-awesome-autostart-this &
    
    # THE BELOW LINE MUST BE LAST
    exec dwm
    Now edit the .desktop file you created, and point to the script at Exec=
    Thanks RiceMonster!
    Worked like a charm.

Page 3 of 3 FirstFirst 123

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
  •