Advertisement
mmu_man

conky-sigrok.conf

Aug 24th, 2023
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. -- Conky, a system monitor https://github.com/brndnmtthws/conky
  2. --
  3. -- This configuration file is Lua code. You can write code in here, and it will
  4. -- execute when Conky loads. You can use it to generate your own advanced
  5. -- configurations.
  6. --
  7. -- Try this (remove the `--`):
  8. --
  9. -- print("Loading Conky config")
  10. --
  11. -- For more on Lua, see:
  12. -- https://www.lua.org/pil/contents.html
  13.  
  14. conky.config = {
  15. alignment = 'top_left',
  16. background = false,
  17. border_width = 1,
  18. cpu_avg_samples = 2,
  19. default_color = 'black',
  20. default_outline_color = 'white',
  21. default_shade_color = 'white',
  22. double_buffer = true,
  23. draw_borders = false,
  24. draw_graph_borders = true,
  25. draw_outline = false,
  26. draw_shades = false,
  27. extra_newline = false,
  28. font = 'DejaVu Sans Mono:size=12',
  29. gap_x = 60,
  30. gap_y = 60,
  31. minimum_height = 5,
  32. minimum_width = 5,
  33. net_avg_samples = 2,
  34. no_buffers = true,
  35. out_to_console = false,
  36. out_to_ncurses = false,
  37. out_to_stderr = false,
  38. out_to_x = true,
  39. own_window = true,
  40. own_window_class = 'Conky',
  41. own_window_colour = '#00ff00',
  42. --own_window_type = 'desktop',
  43. show_graph_range = false,
  44. show_graph_scale = false,
  45. stippled_borders = 0,
  46. update_interval = 1.0,
  47. uppercase = false,
  48. use_spacer = 'none',
  49. use_xft = true,
  50. }
  51.  
  52. conky.text = [[
  53. ${color black}${font DejaVu Sans Mono:size=40}${exec sigrok-cli -d demo -g Analog -C A0 --samples 1 -O analog | sed 's/^..: //'}
  54. ]]
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement