Guest User

$HOME/.config/conky/conky.conf

a guest
Feb 13th, 2022
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 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_right',
  16. background = false,
  17. border_width = 1,
  18. cpu_avg_samples = 2,
  19. default_color = 'white',
  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 = 'Sarasa Mono J:size=12',
  29. gap_x = 19,
  30. gap_y = 64,
  31. minimum_height = 5,
  32. minimum_width = 5,
  33. net_avg_samples = 2,
  34. no_buffers = false,
  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 = '#202020',
  42. own_window_hints = 'undecorated,sticky',
  43. own_window_transparent = false,
  44. show_graph_range = false,
  45. show_graph_scale = false,
  46. stippled_borders = 0,
  47. update_interval = 1,
  48. uppercase = false,
  49. use_spacer = 'none',
  50. use_xft = true,
  51. xftalpha = 1,
  52. xinerama_head = 1,
  53. }
  54.  
  55. conky.text = [[
  56. ${color grey}Uptime:$color $uptime
  57. ${color grey}$hr
  58. ${color grey}CPU:$color ${hwmon 5 temp 2}°C
  59. ${color grey}DRV:$color ${hwmon 0 temp 2}°C
  60. ${color grey}$hr
  61. ${color grey}RAM:$color $legacymem/$memmax - $memperc% ${membar 4}
  62. ${color grey}SWP:$color $swap/$swapmax - $swapperc%
  63. ${color grey}DSK:$color $diskio
  64. ${color grey} DSK-R:$color $diskio_read
  65. ${color grey} DSK-W:$color $diskio_write
  66. ${color grey}BAT:$color $battery_percent%
  67. ${color grey}NET:$color ${wireless_link_qual_perc wlan0}%
  68. ${color grey}$hr
  69. ${color grey}VOL:$color $pa_sink_volume%
  70. ${color grey}NUM:$color $key_num_lock
  71. ${color grey}$hr
  72. ${color grey}Frequency (GHz):$color $freq_g
  73. ${color grey}CPU :$color $cpu ${cpubar 4}
  74. ${color grey}CPU0 :$color ${cpu cpu1} ${cpubar cpu1 4}
  75. ${color grey}CPU1 :$color ${cpu cpu2} ${cpubar cpu2 4}
  76. ${color grey}CPU2 :$color ${cpu cpu3} ${cpubar cpu3 4}
  77. ${color grey}CPU3 :$color ${cpu cpu4} ${cpubar cpu4 4}
  78. ${color grey}CPU4 :$color ${cpu cpu5} ${cpubar cpu5 4}
  79. ${color grey}CPU5 :$color ${cpu cpu6} ${cpubar cpu6 4}
  80. ${color grey}CPU6 :$color ${cpu cpu7} ${cpubar cpu7 4}
  81. ${color grey}CPU7 :$color ${cpu cpu8} ${cpubar cpu8 4}
  82. ${color grey}Processes:$color $processes ${color grey}Running:$color $running_processes
  83. ${color grey}$hr
  84. / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
  85. ${color grey}SSD $color${fs_used /SSD}/${fs_size /SSD} ${fs_bar 6 /SSD}
  86. ${color grey}HDD $color${fs_used /HDD}/${fs_size /HDD} ${fs_bar 6 /HDD}
  87. ${color grey}$hr
  88. ${color grey}Name PID CPU% MEM%
  89. ${color grey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
  90. ${color grey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
  91. ${color grey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
  92. ${color grey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
  93. ${color grey} ${top name 5} ${top pid 5} ${top cpu 5} ${top mem 5}
  94. ${color grey} ${top name 6} ${top pid 6} ${top cpu 6} ${top mem 6}
  95. ${color grey} ${top name 7} ${top pid 7} ${top cpu 7} ${top mem 7}
  96. ${color grey} ${top name 8} ${top pid 8} ${top cpu 8} ${top mem 8}
  97. ${color grey} ${top name 9} ${top pid 9} ${top cpu 9} ${top mem 9}
  98. ${color grey} ${top name 10} ${top pid 10} ${top cpu 10} ${top mem 10}
  99. ]]
Advertisement
Add Comment
Please, Sign In to add comment