dotfiles/home/vylpes/.config/xmobar/xmobarrc0

34 lines
1.5 KiB
Plaintext
Raw Normal View History

2022-05-01 17:00:47 +01:00
Config { font = "xft:hack:pixelsize=20:antialias=true:hinting=true"
, additionalFonts = [ "xft:Font Awesome 6 Free Solid:pixelsize=20"
, "xft:Font Awesome 6 Brands:pixelsize=20"
]
2021-03-15 18:02:04 +00:00
, borderColor = "black"
, border = TopB
, bgColor = "black"
, fgColor = "grey"
, alpha = 255
2022-05-01 17:00:47 +01:00
, position = Static { xpos = 0, ypos = 0, width = 2880, height = 30 }
2021-03-15 18:02:04 +00:00
, textOffset = -1
, iconOffset = -1
, lowerOnStart = True
, pickBroadest = False
, persistent = True
, hideOnStart = False
, iconRoot = "/home/vylpes/.xmonad/xpm"
, allDesktops = False
, overrideRedirect = True
2022-05-01 17:00:47 +01:00
, commands = [ Run Network "enp24s0" ["-t", "<fn=1></fn><rx>kb <fn=1></fn><tx>kb"] 10
, Run Cpu ["-t", "<total>%", "-L","3","-H","50",
2021-03-15 18:02:04 +00:00
"--normal","green","--high","red"] 10
2022-05-01 17:00:47 +01:00
, Run Memory ["-t","<usedratio>%"] 10
, Run Com "uname" ["-r"] "" 36000
2021-03-15 18:02:04 +00:00
, Run Date "%a %_d %b %Y %H:%M" "date" 10
2022-05-01 17:00:47 +01:00
, Run DiskU [("/", "<free>"),("/home", "| hdd <free>")] [] 10
2021-03-15 18:02:04 +00:00
, Run UnsafeStdinReader
]
, sepChar = "%"
, alignSep = "}{"
2022-05-01 17:00:47 +01:00
, template = "<fn=1></fn> %cpu% | <fn=1></fn> %memory% | %enp24s0% | <fn=1></fn> %disku% }\
\{ <fc=#ee9a00>%date%</fc> | <fn=2></fn> %uname% | %UnsafeStdinReader%"
2021-03-15 18:02:04 +00:00
}