Skip to content

Instantly share code, notes, and snippets.

@pbrisbin
Created October 16, 2010 01:30
Show Gist options
  • Select an option

  • Save pbrisbin/629269 to your computer and use it in GitHub Desktop.

Select an option

Save pbrisbin/629269 to your computer and use it in GitHub Desktop.
--
-- StatusBars
--
-- See http://pbrisbin.com/xmonad/docs/Dzen.html
--
myLeftBar :: DzenConf
myLeftBar = defaultDzen
-- use the default as a base and override width and
-- colors
{ width = 1000
, fg_color = "#909090"
, bg_color = "#303030"
}
myRightBar :: DzenConf
myRightBar = myLeftBar
-- use the left one as a base and override just the
-- x position and width
{ x_position = 1000
, width = 920
, alignment = RightAlign
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment