-
Notifications
You must be signed in to change notification settings - Fork 2
/
xmobar.hs.sven-uni
25 lines (24 loc) · 1.06 KB
/
xmobar.hs.sven-uni
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
-- xmobar config used by Vic Fryzel
-- Author: Vic Fryzel
-- http://github.com/vicfryzel/xmonad-config
Config {
font = "xft:DejaVu Sans Mono-10",
bgColor = "#000000",
fgColor = "#ffffff",
position = Static { xpos = 0, ypos = 3808, width = 2160, height = 32 },
lowerOnStart = False,
persistent = True,
overrideRedirect = True,
allDesktops = True,
commands = [
Run MultiCpu ["-t","Cpu: <total0> <total1> <total2> <total3>","-L","30","-H","60","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC","-w","3"] 10,
-- Run Memory ["-t","Mem: <usedratio>%","-H","8192","-L","4096","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC"] 10,
-- Run Swap ["-t","Swap: <usedratio>%","-H","1024","-L","512","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC"] 10,
-- Run Network "eth1" ["-t","Net: <rx>, <tx>","-H","200","-L","10","-h","#FFB6B0","-l","#CEFFAC","-n","#FFFFCC"] 10,
Run Date "%a %b %_d %l:%M" "date" 10,
Run StdinReader
],
sepChar = "%",
alignSep = "}{",
template = "%StdinReader% }{ <fc=#FFFFCC>%date%</fc>"
}