Xmonad 0.9 released The light, reliable, extensible tiling window manager
xmonad.wordpress.com
Xmonad 0.9 released The light, reliable, extensible tiling window manager
1–10 of 50 posts
Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#2Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#3Are you (like me) an Emacs user? You want to remap the Xmonad modifier-key (default is on left Alt a.k.a. Meta). Here is my solution:
xmodmap -e "clear Mod3"
xmodmap -e "clear Lock"
xmodmap -e "add Mod3 = Caps_Lock"
xmonad
taken from my ~/.xsession file - this remaps the "Caps Lock" key
as a "Mod3 key".My ~/.xmonad/xmonad.hs looks like this:
import XMonad
main = xmonad defaultConfig {
modMask = mod3Mask
, terminal = "xterm"
}
Now I can use Caps Lock as Xmonad modifier key and Ctrl/Meta as I'm used to for Emacs (note that I have a PC 102 keyboard - if you have a keyboard with "Windows"-key you might use this key as modifier key instead and perhaps remap Caps Lock as your Control key...).Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#4Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#5Wikipedia: http://en.wikipedia.org/wiki/Stumpwm
Video: http://www.vimeo.com/1088321
Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#6If you use tiled window managers, and haven't used Xmonad before, I highly recommend it. It's very lightweight, fast, non-buggy, and has a perfect (for me at least) little feature set.
But, that's just my opinion.
Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#7xmonad is pretty cool, it uses quickcheck for (almost) exhaustive testing of every basic element of the manager, and as I understand it the process of programming new tiling layouts etc is pretty easy.
Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#8If you use tiled window managers, and haven't used Xmonad before, I highly recommend it. It's very lightweight, fast, non-buggy, and has a perfect (for me at least) little feature set.
Many kudos to dons for creating an awesome twm, but I don't think it's a good investment of time for the HN userbase (i.e., the young start-ups who just want to get their thing working and up, whatever be that 'thing'). Xmonad is hard to configure and set up, and hard to work with. I'd rather stick with gnome and have everything Just Work. But, that's just my opinion.
Personally I find I get increased productivity out of not constantly fiddling with window placement.
Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#9If you use tiled window managers, and haven't used Xmonad before, I highly recommend it. It's very lightweight, fast, non-buggy, and has a perfect (for me at least) little feature set.
Many kudos to dons for creating an awesome twm, but I don't think it's a good investment of time for the HN userbase (i.e., the young start-ups who just want to get their thing working and up, whatever be that 'thing'). Xmonad is hard to configure and set up, and hard to work with. I'd rather stick with gnome and have everything Just Work. But, that's just my opinion.
Yeah, this comment is kind of like that. Most "modern" windowmanagers are much more about making the desktop pretty than making it usable. Me, I'm happily still running fvwm2 (though I use XMonad every once in a while), and not only does it not waste cycles on things I'm not looking at, it is configurable quickly and easily to an extent that the mainstream Gnome WMs have a hard time touching. XMonad takes that a step further by allowing configuration directly in Haskell (in my perfect world fvwm2 would use guile, but I'm not really complaining).
When you want to improve your efficiency at repetitive tasks or basic interactions with your computer, dropping relatively simple "Just Work" solutions in favor of more flexible options makes complete sense. Arguing against a meager time investment to make your UI yours strikes me as rather wrongheaded.
Re: Xmonad 0.9 released The light, reliable, extensible tiling window manager
#10Earlier quoted context omitted.
Many kudos to dons for creating an awesome twm, but I don't think it's a good investment of time for the HN userbase (i.e., the young start-ups who just want to get their thing working and up, whatever be that 'thing'). Xmonad is hard to configure and set up, and hard to work with. I'd rather stick with gnome and have everything Just Work. But, that's just my opinion.
They have lots of example configurations you can just copy. I agree that at first it seems like it's going to be a huge hassle to setup but it's really not that bad after you've done it once. Personally I find I get increased productivity out of not constantly fiddling with window placement.
Sure, you can do that. But then you also have to take the time to understand THAT config (which, isn't even optimized for _YOU_, to begin with) and get USED to that . . .
>I agree that at first it seems like it's going to be a huge hassle to setup but it's really not that bad after you've done it once. You also have to invest time in understanding how the config goes, and have a bit of experience with Haskell, and Xmonad itself, to even create a config that really is good for you.
Maybe twm is something for me, maybe it isn't. I really don't know - because I only gave it one try, and quickly gave up (because I was having some problems with it, and wasn't willing at that time to set aside time to resolve those problems).