conky.conf 921 B

123456789101112131415161718192021222324252627
  1. conky.config = {
  2. background = true,
  3. update_interval = 2.0,
  4. cpu_avg_samples = 5,
  5. net_avg_samples = 5,
  6. diskio_avg_samples = 5,
  7. alignment = 'tm',
  8. gap_y = 0,
  9. gap_x = 0,
  10. use_xft = true,
  11. xftalpha = 0.8,
  12. font = 'ForMateKonaVe:size=9',
  13. uppercase = false,
  14. override_utf8_locale = true,
  15. default_color = '6CBE6C',
  16. own_window = true,
  17. own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  18. own_window_transparent = false,
  19. own_window_argb_visual = true,
  20. own_window_argb_value = 80,
  21. double_buffer = true,
  22. }
  23. conky.text = [[
  24. ${exec ip addr show | grep -v "127.0.0." | grep -v "169.254." | grep -o 'inet [0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+' | grep -o [0-9].*} ${exec date +'%F %H:%M:%S'} (${uptime}) cpu (${cpu cpu0}%) ${cpubar cpu0 8,120} ${mem}/${memmax} (${memperc}%) ${membar 5,120} / (${fs_used_perc /}%) ${fs_bar 5,120 /}
  25. ]]