xmobarrc 1.0 KB

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