Advertisement
Guest User

Conky Settings

a guest
Apr 21st, 2010
1,379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont Trebuchet MS:size=8
  4. xftalpha 0.8
  5. text_buffer_size 2048
  6.  
  7. # Update interval in seconds
  8. update_interval 1
  9.  
  10. # This is the number of times Conky will update before quitting.
  11. # Set to zero to run forever.
  12. total_run_times 0
  13.  
  14. # Create own window instead of using desktop (required in nautilus)
  15. own_window yes
  16. own_window_transparent yes
  17. own_window_type desktop
  18. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  19.  
  20. # Use double buffering (reduces flicker, may not work for everyone)
  21. double_buffer yes
  22.  
  23. # Minimum size of text area
  24. minimum_size 180 0
  25. maximum_width 180
  26.  
  27. # Draw shades?
  28. draw_shades no
  29.  
  30. # Draw outlines?
  31. draw_outline no
  32.  
  33. # Draw borders around text
  34. draw_borders no
  35.  
  36. # Stippled borders?
  37. stippled_borders 0
  38.  
  39. # border margins
  40. border_margin 5
  41.  
  42. # border width
  43. border_width 1
  44.  
  45. # Default colors and also border colors
  46. default_color white
  47. own_window_colour white
  48.  
  49. # Text alignment, other possible values are commented
  50. alignment top_right
  51.  
  52. # Gap between borders of screen and text
  53. # same thing as passing -x at command line
  54. gap_x 73
  55. gap_y 290
  56.  
  57. # Subtract file system buffers from used memory?
  58. no_buffers yes
  59.  
  60. # set to yes if you want all text to be in uppercase
  61. uppercase no
  62.  
  63. # number of cpu samples to average
  64. # set to 1 to disable averaging
  65. cpu_avg_samples 2
  66.  
  67. # number of net samples to average
  68. # set to 1 to disable averaging
  69. net_avg_samples 2
  70.  
  71. # Force UTF8? note that UTF8 support required XFT
  72. override_utf8_locale yes
  73.  
  74. # Add spaces to keep things from moving about? This only affects certain objects.
  75. use_spacer none
  76.  
  77. # Create own window instead of using desktop (required in nautilus)
  78. own_window yes
  79.  
  80. # If own_window is yes, you may use type normal, desktop or override
  81. own_window_type override
  82.  
  83. # Use pseudo transparency with own_window?
  84. own_window_transparent yes
  85.  
  86.  
  87. TEXT
  88. SYSTEM ${hr 2}
  89.  
  90. Kernel: ${alignr}${kernel}
  91. CPU0: ${cpu cpu0}% ${alignr}${cpubar 10,120 cpu0}
  92. ${offset 60}${cpugraph cpu0 20,120 000000 ffffff}
  93. CPU1: ${cpu cpu1}% ${alignr}${cpubar 10,120 cpu1}
  94. ${offset 60}${cpugraph cpu1 20,120 000000 ffffff}
  95. RAM: $memperc% ${alignr}${membar 10,120}
  96.  
  97. HD ${hr 2}
  98.  
  99. Root:
  100. ${fs_free /root}/${fs_size /root} ${alignr}${fs_bar 10,80 /root}
  101. Media:
  102. ${fs_free /media/AA0C-FA89}/${fs_size /media/AA0C-FA89} ${alignr}${fs_bar 10,80 /media/AA0C-FA89}
  103.  
  104. NETWORK ${hr 2}
  105. Up: ${upspeed eth0} kb/s ${alignr}${upspeedgraph eth0 10,80 000000 ffffff}
  106. Down: ${downspeed eth0} kb/s ${alignr}${downspeedgraph eth0 10,80 000000 ffffff}
  107.  
  108. MUSIC ${hr 2}
  109. ${voffset 7}${exec conkyExaile --datatype=TI} by ${exec conkyExaile --datatype=AR}
  110.  
  111. PROCESSES ${hr 2}
  112. ${offset 10}${color 88aadd} ${top name 1}${top cpu 1}
  113. ${offset 10}${color lightgrey} ${top name 2}${top cpu 2}
  114. ${offset 10}${color lightgrey} ${top name 3}${top cpu 3}
  115. ${offset 10}${color lightgrey} ${top name 4}${top cpu 4}
  116. ${offset 10}${color lightgrey} ${top name 5}${top cpu 5}
  117. ${offset 10}${color lightgrey} ${top name 6}${top cpu 6}
  118. ${offset 10}${color lightgrey} ${top name 7}${top cpu 7}
  119. ${offset 10}${color lightgrey} ${top name 8}${top cpu 8}
  120. ${offset 10}${color lightgrey} ${top name 9}${top cpu 9}
  121.  
  122.  
  123.  
  124.  
  125. DATE ${hr 2}
  126. ${alignc}${font Trebuchet MS:size=26}${time %H:%M}${font}
  127. ${alignc}${font Trebuchet MS:size=12}${time %a %b %d %Y}${font}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement