Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. Config { font = "-terminus-medium-*-*-*-*-14-*-*-*-*-*-*-*"
  2. , additionalFonts = []
  3. , borderColor = "black"
  4. , border = TopB
  5. , bgColor = "darkblue"
  6. , fgColor = "grey"
  7. , alpha = 255
  8. , position = Top
  9. , textOffset = -1
  10. , iconOffset = -1
  11. , lowerOnStart = True
  12. , pickBroadest = False
  13. , persistent = False
  14. , hideOnStart = False
  15. , iconRoot = "."
  16. , allDesktops = True
  17. , overrideRedirect = True
  18. , commands = [ Run StdinReader
  19. , Run Network "wlp4s0" [ "-L", "0"
  20. , "-H", "32"
  21. , "--normal", "green"
  22. , "--high", "red"
  23. ] 10
  24. , Run Wireless "wlp4s0" [ "--template", "802.11: <essid> <quality>%"
  25. ] 10
  26. , Run Cpu ["--template", "CPU: <total>%",
  27. "-L", "3",
  28. "-H", "50",
  29. "--normal", "green",
  30. "--high","red"
  31. ] 10
  32. , Run Memory ["-t", "Mem: <usedratio>%"] 10
  33. , Run CoreTemp ["-t", "<core0>°C"] 10
  34. , Run Date "%a %Y-%m-%d %I:%M:%S%p" "date" 10
  35. , Run BatteryN ["BAT0"] [ "--template" , "Batt0: <acstatus>"
  36. , "--Low" , "10" -- units: %
  37. , "--High" , "80" -- units: %
  38. , "--low" , "red"
  39. , "--normal" , "orange"
  40. , "--high" , "green"
  41.  
  42. , "--" -- battery specific options
  43. -- discharging status
  44. , "-o" , "<left>% (<timeleft>)"
  45. -- AC "on" status
  46. , "-O" , "<fc=#dAA520>Charging</fc>"
  47. -- charged status
  48. , "-i" , "<fc=green>Charged</fc>"
  49. ] 50 "battery0"
  50. , Run BatteryN ["BAT1"] [ "--template" , "Batt1: <acstatus>"
  51. , "--Low" , "10" -- units: %
  52. , "--High" , "80" -- units: %
  53. , "--low" , "red"
  54. , "--normal" , "orange"
  55. , "--high" , "green"
  56.  
  57. , "--" -- battery specific options
  58. -- discharging status
  59. , "-o" , "<left>% (<timeleft>)"
  60. -- AC "on" status
  61. , "-O" , "<fc=#dAA520>Charging</fc>"
  62. -- charged status
  63. , "-i" , "<fc=green>Charged</fc>"
  64. ] 50 "battery1"
  65.  
  66. ]
  67. , sepChar = "%"
  68. , alignSep = "}{"
  69. , template = "%StdinReader% }{ %cpu%, %coretemp% | %memory% | %wlp4s0wi% | <fc=#ee9a00>%date%</fc> | %battery0% %battery1%"
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement