Practical tips when transitioning to xmonad

unixwindow-managerxmonadxorg

I like the idea and concept of xmonad, however I still keep going back to gnome after an hour or so. This feels like when I first tried to learn vim, but I've gotten past the learning curve point and can't live without vim nowadays.

I'm sure the time will come for xmonad too, but I was wondering if current xmonad users can provide transitional tips?

FYI, I'm on dual monitors ( 19 inch and 17 inch ). Example of an issue I'm having while in this "transitional" stage:

How do you manage keeping the browser and other programs that are most commonly used in full screen mode, since by default I think it opens up in a small tile that takes up a portion of the screen? Do you just shortcut it to make it open full screen, or do you actually not maximize it? Or are there advanced methods through preferences in the conf file, making certain programs take up X space?

Best Answer

Just like Vim there is often a lot of "config fu" that you can pick up from the webpages (definitely spend a few hours or so soaking up the various config file examples at xmonad.org, I think it is worth it), and the mailing list.

First of all, if you are happy with much of GNOME you can run xmonad inside GNOME. This is nice because you can use GNOME's panels and panel-based applications (network-manager is invaluable on my Ubuntu laptop). You also get the benefit of GNOME's theme manager for the UI widgets, which can keep things "pretty".

This page is useful to help you set this up:

http://haskell.org/haskellwiki/Xmonad/Using_xmonad_in_Gnome

As for "full-screen applications":

There are several approaches that you can mix and match until you find a setup that best works for you. In my case, I've set two of my workspaces Beta and Iota (I use greek letter names, but they may as well be named "Mail" and "Music") that default (on restart) to the Full layout, with most of my other workspaces defaulting to to the tiled layout of my choice. (I can always cycle the layouts as needed with the usual Mod+Space shortcut.) That way I know that when I open applications on either of those workspaces, they will get the full view. I tend to open my mail and browser on one (Beta) and my music player on the other (Iota), with other apps spread about the other workspaces. To make this easier I have a hook that, when I launch my media player or mail program, but not my browser, it will automatically move them to my standard workspace for them. (Sometimes I will open browser window tiled, for instance when I'm working on a webpage layout and want to have a dev-mode browser for quick previews.)

The last big tip I can give you is that the #xmonad channel on FreeNode can be a good place to get some gentle encouragement or useful help when you need it, as technical-oriented IRC channels tend to be.

Related Question