Files
old-nixos-dotfiles/user/homed/xmonad/xmobarrc

47 lines
2.1 KiB
Plaintext

Config { font = "DejaVu Sans Mono 9"
, additionalFonts = ["DejaVu Sans Mono italic 9"]
, borderColor = "black"
, border = FullB
, bgColor = "black"
, fgColor = "whitesmoke"
, alpha = 160
, position = TopSize L 93 24
, textOffset = -1
, iconOffset = -1
, lowerOnStart = True
, pickBroadest = False
, persistent = False
, hideOnStart = False
, iconRoot = "."
, allDesktops = True
, overrideRedirect = False
, textOutputFormat = Ansi
, commands = [ Run Weather "RJNG" ["-t","@<station> <tempC>C, <rh>%, <pressure>hPa",
"-L","18","-H","25",
"--normal","green",
"--high","red",
"--low","lightblue"] 36000
, Run Weather "RJGG" ["-t","@<station> <tempC>C, <rh>%, <pressure>hPa",
"-L", "18", "-H", "25",
"--normal", "green",
"--high", "red",
"--low", "lightblue"] 36000
, Run Network "wlo1" ["-L","0","-H","32",
"--normal","green","--high","red"] 10
, Run Network "enp4s0" ["-L","0","-H","32",
"--normal","green","--high","red"] 10
, Run Cpu ["-L","3","-H","50",
"--normal","green","--high","red"] 10
, Run Memory ["-t","Mem: <usedratio>%"] 10
, Run Swap [] 10
, Run Com "uname" ["-s","-r"] "" 36000
, Run Date "%a %b %_d %Y %H:%M:%S" "date" 10
, Run StdinReader
]
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader% | %cpu% | <box>%memory% * %swap%</box> | %wlo1% - %enp4s0% }\
\{ %RJNG% <fc=#ee9a00><fn=1>%date%</fn></fc>"
}