I have a very simple xmonad/xmobar configuration, with this on the left hand side of xmobar:
[1] 2 : Tall : How to configure StdinReader to only ...
How can I remove the layout name and window title? (Tall
and How to ...
) ??
I can see the template in xmobarrc2
looks like this:
template = "%StdinReader%}{<fc=#FFF>%date%</fc>"
So it looks like StdinReader
provides all 3 of those items, but how can I configure this? I can't seem to find anything useful about this, except maybe UnsafeStdinReader
, but I really don't get how it works, or how I'm supposed to go about researching this..
Can anyone point me in the right direction?
My entire xmobarrc2
:
Config { font = "xft:Ubuntu Mono:pixelsize=16:antialias=true:hinting=true"
, borderColor = "black"
, border = TopB
, bgColor = "black"
, fgColor = "grey"
, position = TopP 0 0
, commands = [
Run Weather "CYVR" ["-t","<tempC>C","-L","18","-H","25","--normal","green","--high","red","--low","lightblue"] 36000
, Run Network "eth0" ["-L","0","-H","32","--normal","green","--high","red"] 10
, Run Network "eth1" ["-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 %_d.%_m %H:%M" "date" 10
, Run StdinReader
]
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader%}{<fc=#FFF>%date%</fc>"
}