
23 Nov
2010
23 Nov
'10
8:24 a.m.
On Tue, Nov 23, 2010 at 08:46:12PM +1100, Nick Urbanik wrote:
main = xmonad defaultConfig { borderWidth = 30 } -- BORDERS ARE HUGE LIKE XBOX
Unfortunately, I haven't learned Haskell sufficiently to understand where to put this in my configuration, which looks like this:
Just add it on a separate (comma-separated) line within the record of config options, for example
... , modMask = mod4Mask -- Rebind Mod to the Windows key , borderWidth = 2 } `additionalKeys` ...
-Brent