Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. conky.config = {
  2. use_xft = true,
  3. xftalpha = 0.8,
  4. update_interval = 1.0,
  5. total_run_times = 0,
  6. own_window = true,
  7. own_window_transparent = no,
  8. own_window_argb_visual = true,
  9. own_window_argb_value = 180,
  10. own_window_colour = '2F343F',
  11. own_window_type = 'normal',
  12. own_window_class = 'conky-semi',
  13. own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  14. background = true,
  15. double_buffer = true,
  16. imlib_cache_size = 0,
  17. no_buffers = true,
  18. uppercase = false,
  19. cpu_avg_samples = 2,
  20. override_utf8_locale = true,
  21.  
  22. -- placement
  23. alignment = 'top_right',
  24. gap_x = 25,
  25. gap_y = 45,
  26.  
  27. -- default drawing
  28. draw_shades = false,
  29. draw_outline = false,
  30. draw_borders = false,
  31. draw_graph_borders = true,
  32. default_bar_width = 150, default_bar_height = 5,
  33. default_graph_width = 150, default_graph_height = 12,
  34. default_gauge_width = 20, default_gauge_height = 20,
  35.  
  36. -- colors
  37. font = 'Noto Sans:size=9',
  38. default_color = 'E9FFE9',
  39. color1 = '77BCFF',
  40. color2 = '90EE90',
  41. color3 = '4E6E4E',
  42.  
  43. -- layouting
  44. template0 = [[${font Liberation Sans:bold:size=11}${color2}1 ${color3}${hr 2}${font}]],
  45. template1 = [[${color1}1]],
  46. template2 = [[${goto 70}${color}]],
  47. template3 = [[${goto 120}${color}${alignr}]],
  48. };
  49.  
  50. conky.text = [[
  51. ${template0 Info}
  52. ${template1 Date} ${color3}${template3}${time %a,}${color}${time %e %B %G}
  53. ${template1 Time} ${template3}${time %T}
  54.  
  55. ${template0 System}
  56. ${template1 Hostname} ${template3}${nodename}
  57. ${template1 ${sysname}} ${template3}${kernel}-${machine}
  58. ${template1 Uptime} ${template3}${uptime_short}
  59. ${template1 CPU} ${template3}${freq_g}GHz
  60.  
  61. ${template0 Processors}
  62. ${template1 Load} ${template2}${loadavg 1} ${template3}${loadgraph}
  63. ${template1 Core 1} ${template2}${cpu cpu1}% ${template3}${cpubar cpu1}
  64. ${template1 Core 2} ${template2}${cpu cpu2}% ${template3}${cpubar cpu2}
  65. ${template1 Core 3} ${template2}${cpu cpu3}% ${template3}${cpubar cpu3}
  66. ${template1 Core 4} ${template2}${cpu cpu4}% ${template3}${cpubar cpu4}
  67. ${template1 Top} ${template2}${top name 1} ${template3}${top cpu 1}
  68.  
  69. ${template0 Memory}
  70. ${template1 Memory} ${template2}${memperc}% used ${template3}${mem} / ${memmax}
  71. ${template3}${membar}
  72. ${template1 Top} ${template2}${top_mem name 1} ${template3}${top_mem mem_vsize 1}
  73.  
  74. ${template0 Filesystem}
  75. ${template1 /} ${template2}${fs_free /} free ${template3}${fs_used /} / ${fs_size /}
  76. ${template3}${fs_bar /}
  77. ${template1 IO Read} ${template2}${diskio_read} ${template3}${diskiograph_read}
  78. ${template1 IO Write} ${template2}$diskio_write ${template3}$diskiograph_write
  79. ${template1 Top} ${template2}${top_io name 1} ${template3}${top_io io_perc 1}
  80.  
  81. ]];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement