Guest User

Untitled

a guest
Mar 17th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. s.mywibox:setup {
  2. layout = wibox.layout.align.horizontal,
  3. { -- Left widgets
  4. layout = wibox.layout.fixed.horizontal,
  5. mylauncher,
  6. s.mytaglist,
  7. s.mypromptbox,
  8. },
  9.  
  10. cpu_widget, -- Middle Widget, problem with this
  11. { -- Right widgets
  12. layout = wibox.layout.fixed.horizontal,
  13. mpdwidget,
  14. --wibox.widget.systray(),
  15. --mytextclock,
  16. --s.mylayoutbox,
  17. },
  18. }
  19.  
  20. local cpugraph_widget = wibox.widget {
  21. max_value = 100,
  22. color = '#74aeab',
  23. background_color = "#000000",
  24. forced_width = 150,
  25. step_width = 2,
  26. step_spacing = 1,
  27. widget = wibox.widget.graph,
  28. layout = wibox.layout.align.expand,
Add Comment
Please, Sign In to add comment