Difference between revisions of "Xmonad/Config archive/John Goerzen's Configuration"

From HaskellWiki
Jump to navigation Jump to search
Line 44: Line 44:
 
</haskell>
 
</haskell>
   
What this does is take the default configuration (defaultConfig) and modify two aspects of it -- the manageHook and layoutHook.
+
What this does is take the default configuration (defaultConfig) and modify two aspects of it -- the manageHook and layoutHook. This particular recipe comes from the [[Xmonad/Frequently asked questions|Xmonad FAQ] and adds the support we need for a status bar and dock.
  +
  +
I'll show my completed file at the end of this page, but for now let's add a few additional things in. By default, the Mod key is Alt, which is also used in Emacs. Sometimes Emacs and xmonad want to use the same key for different actions. Rather than remap every common key, I just change Mod to be the Windows key that's between Ctrl and Alt. So I add this line after layoutHook (taking care to put a comma at the end of layoutHook):
  +
  +
<haskell>
  +
modMask = mod4Mask -- Rebind Mod to the Windows key
  +
</haskell>
  +
  +
The two dashes are a comment to the end of the line.
  +
  +
I also want to bind Mod-Shift-z to lock my screen with the screensaver, control-PrintScreen to take a snapshot of one window, and Printscreen to take a snapshot of the entire screen. My config file, starting with main, now looks like:
  +
  +
<haskell>
  +
main = do
  +
xmonad $ defaultConfig {
  +
manageHook = manageDocks <+> manageHook defaultConfig,
  +
layoutHook = avoidStruts $ layoutHook defaultConfig,
  +
modMask = mod4Mask -- Rebind Mod to the Windows key
  +
} `additionalKeys`
  +
[((mod4Mask .|. shiftMask, xK_z),
  +
spawn "xscreensaver-command -lock"),
  +
((controlMask, xK_Print), spawn "scrot -s"),
  +
((0, xK_Print), spawn "scrot")
  +
]
  +
</haskell>
  +
  +
You can find the names for keys in the [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11 haskell-X11] source package in the file Graphics/X11/Types.hsc.
  +
  +
To support screen capture, run apt-get install scrot. I will cover setting up the screensaver later in this tutorial.
  +
  +
TODO:
  +
xscreensaver
  +
scrot

Revision as of 21:31, 17 September 2008

I'm going to take you step-by-step through the process of configuring Xmonad, setting up a status bar with xmobar, setting up a tray with trayer, and making it all play nicely together. I use this exact configuration on everything from a 1024x600 Eee PC to a 1920x1200 24" workstation, and it works well on all of them.

I assume that you have read the About xmonad page as well as the xmonad guided tour already.

Preliminaries

First you'll want to install xmonad. You can find instructions for that on xmonad.org. I'm going to assume xmonad 0.8 here. If you're on Debian sid, you can just run:

apt-get install xmonad libghc6-xmonad-contrib-dev libghc6-xmonad-dev dwm-tools

This installs xmonad itself, everything you need to configure it, and dwm-tools, which provides the Mod-P launching feature. If you're not on sid, consult the xmonad download site -- note that there are etch binaries there, too.

Set up xmonad in your .xsession as directed in the xmonad guided tour. You should have xmonad up and running before continuing.

Customizing xmonad

So the first thing you will want to do is customize xmonad. Make a directory called ~/.xmonad, and in there, create a file named xmonad.hs. We'll start off with importing some of the utility modules we will use:

import XMonad
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.ManageDocks
import XMonad.Util.Run(spawnPipe)
import XMonad.Util.EZConfig(additionalKeys)
import System.IO

Next, a basic configuration -- which is the same as the default -- is this:

main = do
  xmonad $ defaultConfig

Over at the how to write a config file page -- which you should go read right now -- there are instructions for testing your config file. You should be able to save the above file, with the import lines plus the other two, and validate it with ghci, and press Mod-q to load it up.

Now how about something real? Replace the lines starting with main with:

main = do
  xmonad $ defaultConfig {
         manageHook = manageDocks <+> manageHook defaultConfig,
         layoutHook = avoidStruts  $  layoutHook defaultConfig
         }

What this does is take the default configuration (defaultConfig) and modify two aspects of it -- the manageHook and layoutHook. This particular recipe comes from the [[Xmonad/Frequently asked questions|Xmonad FAQ] and adds the support we need for a status bar and dock.

I'll show my completed file at the end of this page, but for now let's add a few additional things in. By default, the Mod key is Alt, which is also used in Emacs. Sometimes Emacs and xmonad want to use the same key for different actions. Rather than remap every common key, I just change Mod to be the Windows key that's between Ctrl and Alt. So I add this line after layoutHook (taking care to put a comma at the end of layoutHook):

         modMask = mod4Mask     -- Rebind Mod to the Windows key

The two dashes are a comment to the end of the line.

I also want to bind Mod-Shift-z to lock my screen with the screensaver, control-PrintScreen to take a snapshot of one window, and Printscreen to take a snapshot of the entire screen. My config file, starting with main, now looks like:

main = do
  xmonad $ defaultConfig {
         manageHook = manageDocks <+> manageHook defaultConfig,
         layoutHook = avoidStruts  $  layoutHook defaultConfig,
         modMask = mod4Mask     -- Rebind Mod to the Windows key
       } `additionalKeys`
       [((mod4Mask .|. shiftMask, xK_z),
         spawn "xscreensaver-command -lock"),
        ((controlMask, xK_Print), spawn "scrot -s"),
        ((0, xK_Print), spawn "scrot")
       ]

You can find the names for keys in the haskell-X11 source package in the file Graphics/X11/Types.hsc.

To support screen capture, run apt-get install scrot. I will cover setting up the screensaver later in this tutorial.

TODO: xscreensaver scrot