about summary refs log tree commit diff
path: root/dotfiles/xmobar.hs
blob: c0abc8e570d9d54fb0ad5e3dd8b66386a58de39d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Config { 

   -- appearance
     font =         "TX-02 10"
   , additionalFonts = ["Inconsolata LGC Nerd Font 10"]
   , bgColor =      "#222222"
   , fgColor =      "#bbbbbb"
   , position =     Top
   , border =       NoBorder

   -- layout
   , sepChar =  "%"   -- delineator between plugin names and straight text
   , alignSep = "}{"  -- separator between left-right alignment
   , template = "%UnsafeXMonadLog% }{ %WM_NAME%"

   -- 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 = True    -- set the Override Redirect flag (Xlib)
   , pickBroadest =     False   -- choose widest display (multi-monitor)
   , persistent =       False    -- enable/disable hiding (True = disabled)

   , commands = [ Run UnsafeXMonadLog,
                  Run XPropertyLog "WM_NAME" ]
   }