conkyrc 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. conky.config = {
  2. -- -- Conky settings -- #
  3. update_interval = 1,
  4. cpu_avg_samples = 2,
  5. net_avg_samples = 2,
  6. double_buffer = true,
  7. -- -- Window specifications -- #
  8. own_window = true,
  9. own_window_type = 'desktop',
  10. own_window_hints = 'below,skip_taskbar,skip_pager,undecorated',
  11. minimum_width = 200, minimum_height = 800,
  12. maximum_width = 200,
  13. alignment = 'top_right',
  14. gap_x = 0,
  15. gap_y = 25,
  16. -- -- Text settings -- #
  17. use_xft = true,
  18. font = 'Sans:size=24',
  19. color1 = '#cdcdcd',
  20. color2 = '#efefef',
  21. color3 = '#1994d1',
  22. color4 = '#0FC4E3',
  23. default_color = '#eeeeee',
  24. -- -- Lua Load -- #
  25. lua_load = '$HOME/.config/conky/conkyrings.lua',
  26. lua_draw_hook_pre = 'ring_stats',
  27. };
  28. conky.text = [[
  29. ${voffset 81}${goto 75}${font Ds\-Digital:size=20}${color2}${time %I}${color3}${time %M}
  30. ${goto 75}${color1}${font Nu:size=9}Uptime:
  31. ${goto 75}${font Nu:size=9}${uptime_short}
  32. ${voffset 40}${font snap:size=7}${goto 40}${color}CPU
  33. ${voffset 5}${goto 52}${color3}${execi 10 sensors coretemp-isa-0000 | grep Physical | cut -c 18-21}°C
  34. ${goto 52}${color2}${freq_g 1}GHz
  35. ${voffset -35}${goto 138}${color}MEM
  36. ${voffset 5}${goto 109}${color3}${swap}
  37. ${goto 109}${color2}${mem}
  38. ${voffset 60}${goto 40}${color}NET
  39. ${voffset -40}${goto 52}${color2}${downspeedf wlp3s0}
  40. ${goto 52}${color3}${upspeedf wlp3s0}
  41. ${voffset 10}${goto 138}${color}HDD
  42. ${voffset -40}${goto 108}${color2}${fs_free /home}
  43. ${goto 60}${goto 108}${color3}${fs_free /}
  44. ${color1}${voffset 45}${goto 55}${font Nu:size=9}${execi 3600 uname -r}
  45. ]];