~/.xmobarrc

This is my configuration file for xmobar which is a BSD licensed minimalistic text-based status bar for xmonad.

If you are interested, my configuration file is available for download as well.

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
27
28
29
30
31
32
33
34
35
36
-- Author: microfracture / https://linuxious.com
-- Updated: 2015-03-13


Config { font         = "-misc-fixed-*-*-*-*-12-*-*-*-*-*-*-*"
       , bgColor      = "#000000"
       , border       = NoBorder
       , position     = TopW L 95
       , lowerOnStart = True
       , hideOnStart  = False
       , persistent   = True
       , commands     = [ Run MultiCpu
                          [ "-L","3"
                          , "-H","50"
                          , "--high","#FF5555"
                          ] 10
                        , Run CoreTemp
                          [ "-t", "Temp: <core0>C, <core1>C, <core2>C, <core3>C"
                          , "-H","50"
                          , "--high","#FF5555"
                          ] 10
                        , Run Memory
                          [ "-t","Mem: <usedratio>%"
                          ] 10
                        , Run Network "eth0"
                          [ "-t", "<dev> Down: <rx> kB/s / Up: <tx> kB/s"
                          ,"-H","70"
                          ,"--high","#FF5555"
                          ] 10
                        , Run Date "%a, %b %_d %Y %I:%M%P" "date" 10
                        , Run StdinReader
                        ]
       , sepChar      = "%"
       , alignSep     = "}{"
       , template     = "%StdinReader% }{ %multicpu% <fc=#FFFFFF>|</fc> %coretemp% <fc=#FFFFFF>|</fc> %memory% <fc=#FFFFFF>|</fc> %eth0% <fc=#FFFFFF>|</fc> %date%"
       }