summary refs log tree commit diff stats
path: root/xmobar/.xmobarrc
blob: dd54a928f3855f2ea4c441e93e03b51a1d809bf9 (plain)
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
37
38
39
40
Config { font = "-*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*"
       , borderColor = "#657b83"
       , border = TopB
       , bgColor = "#fdf6e3"
       , fgColor = "#657b83"
       , position = BottomW L 90
       , lowerOnStart = False
       , hideOnStart = False
       , persistent = True
       , commands = [ Run Weather "EGNX" ["-t", "<tempC>ºC"
                                         ,"-L", "12"
                                         ,"-H", "22"
                                         ,"--low", "#268bd2"
                                         ,"--normal", "#859900"
                                         ,"--high", "#dc322f"
                                         ] 36000
                    , Run DynNetwork ["-t", "Net: <rx>¦<tx>KB"
                                     ,"-L", "512"
                                     ,"-H", "10240"
                                     ,"--low", "#859900"
                                     ,"--normal", "#b58900"
                                     ,"--high", "#dc322f"
                                     ,"-m", "5"
                                     ] 10
                    , Run Cpu ["-p", "3"
                              ,"-L", "3"
                              ,"-H", "50"
                              ,"--normal", "#859900"
                              ,"--high", "#dc322f"
                              ] 10
                    , Run Memory ["-p", "3"
                                 ,"-t", "Mem: <usedratio>%"
                                 ] 20
                    , Run StdinReader
                    , Run Date "%a %b %_d %Y %H:%M" "date" 100
                    ]
       , sepChar = "%"
       , alignSep = "}{"
       , template = "%StdinReader% }{ %cpu% | %memory% | %dynnetwork% | %EGNX% | <fc=#2aa198>%date%</fc>"
       }