-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.xmobarrc
More file actions
70 lines (68 loc) · 3.87 KB
/
.xmobarrc
File metadata and controls
70 lines (68 loc) · 3.87 KB
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
66
67
68
69
70
Config {
font = "xft:Bitstream Vera Sans Mono:size=11:normal:antialias=true"
, bgColor = "black"
, fgColor = "grey"
, position = Top
, lowerOnStart = True
, alignSep = "}{"
, sepChar = "%"
, commands = [
Run StdinReader
, Run MultiCpu ["-L","30","-H","60","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC","-w","3"] 10
, Run MultiCoreTemp [ "--template" , "<avg> °C"
, "--Low" , "60"
, "--High" , "80"
, "--low" , "lightgreen"
, "--normal" , "darkorange"
, "--high" , "darkred"
] 50
, Run CpuFreq [ "--template" , "<cpu4>"
,"-L", "800"
, "-H", "2"
, "-l", "lightblue"
, "-n","white"
, "-h", "red"] 10
, Run Memory [ "--template" ,"Mem: <usedratio>%"
, "--Low" , "70"
, "--High" , "90"
, "--low" , "lightgreen"
, "--normal" , "darkorange"
, "--high" , "darkred"
] 10
, Run Swap [ "--template" ,"Swap: <usedratio>%"
, "--Low" , "30"
, "--High" , "80"
, "--low" , "lightgreen"
, "--normal" , "darkorange"
, "--high" , "darkred"
] 10
-- , Run Network "enp0s31f6" ["-t","<rx> / <tx>","-H","200","-L","10","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC"] 10
-- , Run Network "wlp3s0" ["-t","<rx> / <tx>","-H","200","-L","10","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC"] 10
-- , Run Network "wwp0s20f0u6" ["-t","<rx> / <tx>","-H","200","-L","10","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC"] 10
-- , Run Network "wwan0" ["-t","<rx> / <tx>","-H","200","-L","10","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC"] 10
, Run DynNetwork [ "--template" , "<dev>: <rx> kB/s - <tx> kB/s"
, "--Low" , "10000"
, "--High" , "1000000"
, "--low" , "lightgreen"
, "--normal" , "darkorange"
, "--high" , "darkred"
] 10
-- , Run Wireless "wlp3s0" [ "-t", "<essid>" ] 10
-- , Run Wireless "wlp3s0" ["-t","ssid: <fc=darkgreen><essid></fc>"] 10
, Run Com "/home/cizekm/bin/wireless-strength.sh" [] "wifi" 10
, Run Battery [ "--template" , "Battery: <acstatus>"
, "--Low" , "10"
, "--High" , "80"
, "--low" , "darkred"
, "--normal" , "darkorange"
, "--high" , "lightgreen"
, "--", "-o" , "<left>% (<timeleft>)"
, "-O" , "<left>% (<fc=#dAA520>Charging</fc>)"
, "-i" , "<left>% (<fc=#006000>Charged</fc>)"
] 50
, Run Date "%F %a %H:%M:%S" "date" 10
, Run Com "uname" ["-s","-r"] "" 36000
]
, template = "%StdinReader% }{ %multicpu% - %multicoretemp% | %memory% - %swap% | %dynnetwork% | <fc=#dff>%wifi%</fc> %battery% | <fc=#ee9a00>%date%</fc> | %uname%"
-- , template = "%StdinReader% }{ %multicpu% - %multicoretemp% | %memory% - %swap% | %dynnetwork% | %wlp3s0wi% %battery% | <fc=#ee9a00>%date%</fc> | %uname%"
}