summaryrefslogtreecommitdiffstats
path: root/config/xmobar.config
blob: cf1f9bd0b2d7d6d34ab45cca90fc2bbdffe358d4 (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 = "xft:Monospace:size=10"
       , additionalFonts = ["xft:Sans:size=10"]
       , borderColor = "black"
       , border = TopB
       , bgColor = "#3c3c3c"
       , fgColor = "#dfdfdf"
       , alpha = 255
       , position = BottomSize L 100 24
       , textOffset = -1
       , iconOffset = -1
       , lowerOnStart = True
       , pickBroadest = False
       , persistent = True
       , hideOnStart = False
       , iconRoot = "{{DATA_DIR}}"
       , allDesktops = True
       , overrideRedirect = False
       , commands = [ Run UnsafeStdinReader
                    , Run Cpu ["-L","3","-H","50",
                               "--normal","green","--high","red",
                               "--template", "<action=`mate-system-monitor --show-processes-tab`>\
                                             \<icon=cpu-core-i7.xpm/> <ipat></action>",
                               "--", "--load-icon-pattern", "<icon=bar-%%.xpm/>"] 10
                    , Run Memory ["-t","<action=`mate-system-monitor --show-resources-tab`>\
                                       \<icon=memory.xpm/> <usedipat></action>",
                                  "--", "--used-icon-pattern", "<icon=bar-%%.xpm/>"] 10
                    , Run DiskU [ ("/", "<action=`baobab` button=1>\
                                       \<icon=disk-usage.xpm/> / <usedipat></action>")
                                , ("/home",
                                       "<icon=home.xpm/> <usedipat>")
                                , ("/home/miminar/Music",
                                       "<icon=music-directory.xpm/> <usedipat>")
                                , ("/dev/2ndary/docker-data",
                                       "<icon=docker.xpm/> <usedipat>")]
                                ["--", "--used-icon-pattern", "<icon=bar-%%.xpm/>"] 20
                    ]
       , sepChar = "%"
       , alignSep = "}{"
       , template = "<fn=1>%UnsafeStdinReader%</fn> }{ %cpu% %memory% %disku%"
       }