Results 1 to 1 of 1
Hello everybody!
Some time ago I installed xmonad, and i like it!
But now I wonder how I can configure it to use a panel. I tried a few: pypanel, ...
- 11-18-2010 #1Just Joined!
- Join Date
- Nov 2010
- Posts
- 1
xmonad + panel or statusbar
Hello everybody!
Some time ago I installed xmonad, and i like it!
But now I wonder how I can configure it to use a panel. I tried a few: pypanel, tint2, awn.
I get xmonad to recognize tint2 so that the windows don't overlap. pypanel and awn aren't recognized -> windows overlap.
The main problem now is, I can't control the windows (minimize, ..) with the panels.
How can I get that to work?
My xmonad.hs looks like this:
Code:terminal' = "urxvt" focusFollowMouse' = False normalBorderColor' = "#000000" focusedBorderColor' = "#dddddd" logHook' = ewmhDesktopsLogHook >> dynamicLogWithPP defaultPP --dynamicLog handleEventHook' = ewmhDesktopsEventHook workspaces' = [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" ] manageHook' = composeAll [ isFullscreen --> doFloat , isDialog --> doFloat , className =? "Tint2" --> doIgnore , className =? "Avant-window-navigator" --> doIgnore , insertPosition Below Newer ] main = xmonad $ ewmh desktopConfig { terminal = terminal' , focusFollowsMouse = focusFollowMouse' , normalBorderColor = normalBorderColor' , focusedBorderColor = focusedBorderColor' , workspaces = workspaces' , manageHook = manageHook' , logHook = logHook' , handleEventHook = handleEventHook' }


Reply With Quote
