Advertisement
bt90

.conkyrc

Sep 13th, 2014
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. # Simple .conkyrc by Thomas Butz
  2. alignment top_right
  3. background yes
  4. cpu_avg_samples 2
  5. default_color cccccc
  6. default_shade_color black
  7. double_buffer yes
  8. draw_borders no
  9. draw_graph_borders yes
  10. draw_outline no
  11. draw_shades no
  12. font DejaVu Sans Mono:size=11
  13. gap_x 20
  14. gap_y 50
  15. if_up_strictness address
  16. minimum_size 250 0
  17. net_avg_samples 2
  18. override_utf8_locale yes
  19. own_window_argb_visual yes
  20. own_window_hints undecorate,sticky,skip_taskbar,skip_pager,below
  21. own_window_transparent yes
  22. own_window_type normal
  23. own_window yes
  24. template0 ${font DejaVu Sans Mono:size=12:bold}${color white}\1$font ${hr 3}$color
  25. template1 ${downspeedgraph \1 FFFF00 FF0000 -t}
  26. template2 ${upspeedgraph \1 FFFF00 FF0000 -t}
  27. text_buffer_size 2048
  28. total_run_times 0
  29. update_interval 1.0
  30. uppercase no
  31. use_xft yes
  32. xftalpha 0.9
  33. xftfont DejaVu Sans Mono:size=11
  34.  
  35. TEXT
  36. ${template0 System}
  37. Name ${alignr}${nodename}
  38. Kernel ${alignr}${kernel}
  39. Uptime ${alignr}${uptime}
  40. Updates ${alignr}${texeci 7200 aptitude search "~U" | wc -l | tr -cd [:digit:]}
  41. Load ${alignr}${loadavg 1}|${loadavg 2}|${loadavg 3}
  42.  
  43. ${template0 CPU}
  44. ${cpugraph FFFF00 FF0000 -t}
  45. ${top name 1} $alignr${top cpu 1}
  46. ${top name 2} $alignr${top cpu 2}
  47. ${top name 3} $alignr${top cpu 3}
  48.  
  49. ${template0 RAM}
  50. Available ${alignr}${memmax}
  51. ${membar}
  52. #${memgraph FFFF00 FF0000 -t}
  53. ${top_mem name 1}$alignr${top_mem mem 1}
  54. ${top_mem name 2}$alignr${top_mem mem 2}
  55. ${top_mem name 3}$alignr${top_mem mem 3}
  56.  
  57. ${template0 Storage}
  58. Root ${alignr}${fs_used /} / ${fs_size /}
  59. ${fs_bar /}
  60. Home ${alignr}${fs_used /home} / ${fs_size /home}
  61. ${fs_bar /home}
  62. I/O Read
  63. ${diskiograph_read FFFF00 FF0000 -t}
  64. I/O Write
  65. ${diskiograph_write FFFF00 FF0000 -t}
  66.  
  67. ${template0 Network}${if_gw}
  68. Public ${alignr}${texeci 120 wget -qO - http://queryip.net/ip/}${endif}${if_up wlan0}
  69. WLAN ${alignr}${addr wlan0}${endif}${if_up eth0}
  70. Ethernet ${alignr}${addr eth0}${endif}
  71. ${if_gw}
  72. Down ${alignr}${if_up wlan0}${downspeed wlan0}${else}${downspeed eth0}${endif}
  73. ${if_up wlan0}${template1 wlan0}${else}${template1 eth0}${endif}
  74. Up ${alignr}${if_up wlan0}${upspeed wlan0}${else}${upspeed eth0}${endif}
  75. ${if_up wlan0}${template2 wlan0}${else}${template2 eth0}${endif}${endif}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement