123456789101112131415161718192021 |
- Config { font = "-misc-fixed-*-*-*-*-13-*-*-*-*-*-*-*"
- , bgColor = "black"
- , fgColor = "grey"
- , position = TopW L 100
- , lowerOnStart = False
- , commands = [ Run Network "wlp3s0" ["-L","0","-H","32","--normal","green","--high","red"] 10
- , Run Cpu ["-L","15","-H","50","--normal","green","--high","red"] 10
- , Run Memory ["-t","Mem: %"] 10
- , Run Swap [] 10
- , Run Date "%a %b %_d %Y %I:%M:%S" "date" 10
- , Run Battery ["-t","<left>% / <timeleft>","-L","50","-H","75","-h","green","-n","yell","-l","red"] 10
- , Run Com "/bin/bash" ["-c", "echo Vol:" ] "vol" 4
- , Run Com "/bin/bash" ["-c", "~/.xmonad/getvolume" ] "myvolume" 9
- , Run Com "/bin/bash" ["-c", "~/.xmonad/getmute" ] "mute" 4
- , Run StdinReader
- ]
- , sepChar = "%"
- , alignSep = "}{"
- , template = "%StdinReader% }{ %cpu% | %battery% | %wlp3s0% | %vol% %myvolume% <fc=green>%mute%</fc> | %date%"
- }
|