1234567891011121314151617181920212223242526272829303132333435363738394041 |
- Config {
- -- appearance
- font = "xft:SFNS Display:size=11,FontAwesome:size=11"
- , bgColor = "black"
- , fgColor = "#A8A8A8"
- , position = Top
- , border = BottomB
- , borderColor = "#646464"
- -- layout
- , sepChar = "%" -- delineator between plugin names and straight text
- , alignSep = "}{" -- separator between left-right alignment
- , template = "}%UnsafeStdinReader%{"
- -- general behavior
- , lowerOnStart = False -- send to bottom of window stack on start
- , hideOnStart = False -- start with window unmapped (hidden)
- , allDesktops = True -- show on all desktops
- , overrideRedirect = False -- set the Override Redirect flag (Xlib)
- , pickBroadest = False -- choose widest display (multi-monitor)
- , persistent = True -- enable/disable hiding (True = disabled)
- -- plugins
- -- Numbers can be automatically colored according to their value. xmobar
- -- decides color based on a three-tier/two-cutoff system, controlled by
- -- command options:
- -- --Low sets the low cutoff
- -- --High sets the high cutoff
- --
- -- --low sets the color below --Low cutoff
- -- --normal sets the color between --Low and --High cutoffs
- -- --High sets the color above --High cutoff
- --
- -- The --template option controls how the plugin is displayed. Text
- -- color can be set by enclosing in <fc></fc> tags. For more details
- -- see http://projects.haskell.org/xmobar/#system-monitor-plugins.
- , commands = [
- Run UnsafeStdinReader
- ]
- }
|