-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.xmobarrc
65 lines (64 loc) · 2.3 KB
/
.xmobarrc
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Config
{ font = "xft:Inconsolata:size=10"
, additionalFonts = [] -- default: []
, borderColor = "white"
, border = NoBorder
, bgColor = "black"
, fgColor = "white"
, alpha = 255 -- default: 255
, position = TopSize C 100 17
, textOffset = -1 -- default: -1
, iconOffset = -1 -- default: -1
, lowerOnStart = True
, pickBroadest = False -- default: False
, persistent = True
, hideOnStart = False
, iconRoot = "/home/dino/.xmonad/resources" -- default: "."
, allDesktops = True -- default: True
, overrideRedirect = False -- default: True
, commands =
[ Run BatteryP ["BAT0"]
[ "-t", "<acstatus><left>%, <timeleft> rem"
, "-L", "20", "-l", "red"
, "--"
, "-O", "<icon=battery-plug-icon_24.xpm/>"
, "-i", "<icon=battery-plug-icon_24.xpm/>"
, "-o", "<icon=battery-full-icon_24.xpm/>"
, "-m", "white"
, "-p", "green" -- This appears to not be working on my X1 Carbon
] 600
, Run CoreTemp
[ "-t", "<icon=thermometer-icon_24.xpm/><core0>°C"
, "-H", "60", "-h", "red"
, "-L", "40", "-l", "lightblue"
, "-n", "white"
] 50
, Run Date
"<icon=calendar-clock-icon_24.xpm/> <fc=#ee9a00>%Y-%b-%0d %a %H:%M:%S</fc>"
"date" 10
, Run DiskU
[ ("/", "<icon=harddisk-icon_24.xpm/> <usedp>% used, <free> free") ]
[] 20
, Run DynNetwork
[ "-t", "<icon=network-icon_24.xpm/> <dev> <icon=actions-arrow-down-icon_24.xpm/><rx>KB <icon=actions-arrow-up-icon_24.xpm/><tx>KB . "
] 10
, Run Memory
[ "-t", "<icon=memory-icon_24.xpm/> <usedratio>% used, <available>M free"] 10
, Run MultiCpu
[ "-t", "<icon=gnome_cpu_24.xpm/> <total0> <total1> <total2> <total3>"
, "-p", "3"
, "-H", "50", "-h", "red"
, "-L", "3"
, "-n", "green"
] 10
, Run StdinReader
, Run Weather "KRDU"
[ "-t", "KRDU: <tempF>°F"
, "-L", "34", "-H", "93"
, "--normal", "green", "--high", "red", "--low", "lightblue"
] 36000
]
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader% . %coretemp% }{ %dynnetwork%%battery% . %date%"
}