have you tried, or are you using the manageDocks manageHook?http://xmonad.org/xmonad-docs/xmonad-co … Docks.html
juna
https://bbs.archlinux.org/profile.php?id=58828
2012-10-14T20:46:31Z
If you just want the default config, use this instead:import XMonad
main = xmonad defaultConfig { modMask = mod4Mask } -- because alt as the modifier is the worst idea ever
Mr.Elendig
https://bbs.archlinux.org/profile.php?id=2407
2013-04-09T11:27:48Z
First off: are you sure you need it? Secondly, what you found there in your link is an extension which should come with the xmonad-contrib package. You don't paste that into your xmonad.hs.This should give you an idea of what you need to do.You should probably read up on XMonad in general though, to figure out how to configure xmonad properly.
HiI am configuring my xmonad and I came across this link: http://www.haskell.org/wikiupload/6/63/And1_xmonad.pngI can't figure out how they got the slanted background for the different components (cpu, date, time etc.)Can anyone tell me how I can do this?
lunamystry
https://bbs.archlinux.org/profile.php?id=47831
2012-09-23T17:21:32Z
I don't have a great deal of space on my screen, so I thought I'd save some by using icons instead of names for my workspaces.
I don't have a great deal of space on my screen, so I thought I'd save some by using icons instead of names for my workspaces.
I think that this is as minimal as it can get if you ignore the modMask and terminal lines. I've been using xmonad since 2 months ago, so take it with a grain of salt. You need to install xmonad-contrib to get it working.
This is a modified xmonad.hs I got from the internet... it works, but the panel only gets shown after I open a program, and the gnome workspace switcher isn't aware of xmonad's workspaces.... ( What else am I missing from gnomeConfig, and how can I fix the issues ?
I'm using gnome+xmonad, and I'm trying to set the mod key to the windows key. I set my .xmonad.hs file to:
import XMonad
import XMonad.Config.Gnome
main = xmonad gnomeConfig
myModMask = mod4Mask
I tried to reload the file with alt+q, but no change seems to have occurred. Any suggestions? I'm far from a power user.