.xmobarrc 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Config {
  2. -- appearance
  3. font = "xft:SFNS Display:size=11,FontAwesome:size=11"
  4. , bgColor = "black"
  5. , fgColor = "#A8A8A8"
  6. , position = Top
  7. , border = BottomB
  8. , borderColor = "#646464"
  9. -- layout
  10. , sepChar = "%" -- delineator between plugin names and straight text
  11. , alignSep = "}{" -- separator between left-right alignment
  12. , template = "}%UnsafeStdinReader%{"
  13. -- general behavior
  14. , lowerOnStart = False -- send to bottom of window stack on start
  15. , hideOnStart = False -- start with window unmapped (hidden)
  16. , allDesktops = True -- show on all desktops
  17. , overrideRedirect = False -- set the Override Redirect flag (Xlib)
  18. , pickBroadest = False -- choose widest display (multi-monitor)
  19. , persistent = True -- enable/disable hiding (True = disabled)
  20. -- plugins
  21. -- Numbers can be automatically colored according to their value. xmobar
  22. -- decides color based on a three-tier/two-cutoff system, controlled by
  23. -- command options:
  24. -- --Low sets the low cutoff
  25. -- --High sets the high cutoff
  26. --
  27. -- --low sets the color below --Low cutoff
  28. -- --normal sets the color between --Low and --High cutoffs
  29. -- --High sets the color above --High cutoff
  30. --
  31. -- The --template option controls how the plugin is displayed. Text
  32. -- color can be set by enclosing in <fc></fc> tags. For more details
  33. -- see http://projects.haskell.org/xmobar/#system-monitor-plugins.
  34. , commands = [
  35. Run UnsafeStdinReader
  36. ]
  37. }