Advertisement
Guest User

topped2013 conky

a guest
Jun 3rd, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont mono:size=9
  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 normal
  18. own_window_hints undecorated,sticky,skip_taskbar,skip_pager
  19. # Use double buffering (reduces flicker, may not work for everyone)
  20. double_buffer yes
  21.  
  22. # Minimum size of text area
  23. minimum_size 1380 0
  24.  
  25. # Draw shades?
  26. draw_shades no
  27.  
  28. # Draw outlines?
  29. draw_outline no
  30.  
  31. # Draw borders around text
  32. draw_borders no
  33.  
  34. # Draw borders around graphs
  35. draw_graph_borders yes
  36.  
  37. # Stippled borders?
  38. stippled_borders 0
  39.  
  40. # border margins
  41. border_margin 0
  42.  
  43. # border width
  44. border_width 2
  45.  
  46. # Default colors and also border colors
  47. default_color white
  48. color2 1994D1
  49. color3 000000
  50. #default_shade_color black
  51. default_outline_color 3c3c3c
  52. own_window_colour 3c3c3c
  53.  
  54. # Text alignment, other possible values are commented
  55. alignment top_left
  56. #alignment top_right
  57. #alignment bottom_left
  58. #alignment bottom_right
  59.  
  60. # Gap between borders of screen and text
  61. # same thing as passing -x at command line
  62. gap_x 5
  63. gap_y 35
  64.  
  65. # Subtract file system buffers from used memory?
  66. no_buffers yes
  67.  
  68. # set to yes if you want all text to be in uppercase
  69. uppercase no
  70.  
  71. # number of cpu samples to average
  72. # set to 1 to disable averaging
  73. cpu_avg_samples 2
  74.  
  75. # number of net samples to average
  76. # set to 1 to disable averaging
  77. net_avg_samples 2
  78.  
  79. # Force UTF8? note that UTF8 support required XFT
  80. override_utf8_locale yes
  81.  
  82. # Add spaces to keep things from moving about? This only affects certain objects.
  83. use_spacer right
  84.  
  85. pad_percents 2
  86.  
  87. TEXT
  88. ${offset 5}${color2}CPU1${color} ${cpu cpu1}% ${cpubar cpu1 9,30} ${color2}2${color} ${cpu cpu2}% ${cpubar cpu2 9,30}${color2} 3${color} ${cpu cpu3}% ${cpubar cpu3 9,30}${color2} 4${color} ${cpu cpu4}% ${cpubar cpu4 9,30}${color2} 5${color} ${cpu cpu5}% ${cpubar cpu5 9,30}${color2} 6${color} ${cpu cpu6}% ${cpubar cpu6 9,30} ${color3}| ${color2}MEM${color} ${mem}/${memmax} ${membar 9,30}${color3} | ${color2}DOWN${color} ${downspeedf eth0}${downspeedgraph eth0 9,30} ${color2}UP${color} ${upspeedf eth0}${upspeedgraph eth0 9,30}${color3} | ${color2}SDA1${color} ${fs_used /}/${fs_size /} ${fs_bar 9,30 /} ${color2}WDG2${color} ${fs_used /home/cory/WD-Green2}/${fs_size /home/cory/WD-Green2} ${fs_bar 9,30 /home/cory/WD-Green2}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement