Advertisement
Guest User

xmobar rc

a guest
May 1st, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. Config {
  2. -- appearance
  3. font = "xft:Iosevka Nerd Font Mono:style=Medium:size=8"
  4. , bgColor = "black"
  5. , fgColor = "white"
  6. , position = Top
  7.  
  8. -- layout
  9. , sepChar = "%"
  10. , alignSep = "}{"
  11.  
  12. -- plugins
  13. , commands =
  14. [
  15. Run MultiCpu [ "--template", "CPU: <total0>"
  16. , "--Low" , "50"
  17. , "--High" , "85"
  18. -- colors
  19. , "--low" , "green"
  20. , "--normal" , "yellow"
  21. , "--high" , "red"] 10
  22.  
  23. , Run Memory [ "--template", "RAM: <usedratio>%"
  24. , "--Low" , "20"
  25. , "--High" , "85"
  26. -- colors
  27. , "--low" , "green"
  28. , "--normal" , "yellow"
  29. , "--high" , "red"] 10
  30.  
  31. , Run Date "%a %Y-%m-%d <fc=#8be9fd>%H:%M</fc>" "date" 10
  32. , Run XMonadLog
  33. ]
  34. , template = "%XMonadLog% }{ %multicpu% | %memory% | %date%"
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement