Advertisement
Guest User

yktoo

a guest
Mar 12th, 2010
949
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.35 KB | None | 0 0
  1. # set to yes if you want Conky to be forked in the background
  2. background no
  3.  
  4. # Use Xft?
  5. use_xft yes
  6.  
  7. # Xft font when Xft is enabled
  8. xftfont WenQuanYi Zen Hei Mono:size=7
  9.  
  10. # Text alpha when using Xft
  11. xftalpha 1.0
  12.  
  13. # MPD host/port
  14. # mpd_host localhost
  15. # mpd_port 6600
  16. # mpd_password tinker_bell
  17.  
  18. # mail spool
  19. mail_spool $MAIL
  20.  
  21. # Update interval in seconds
  22. update_interval 2.0
  23.  
  24. # This is the number of times Conky will update before quitting.
  25. # Set to zero to run forever.
  26. total_run_times 0
  27.  
  28. # Create own window instead of using desktop (required in nautilus)
  29. own_window yes
  30. # If own_window is yes, you may use type normal, desktop or override
  31. own_window_type dock
  32. # Use pseudo transparency with own_window?
  33. own_window_transparent no
  34. # If own_window is yes, these window manager hints may be used
  35. own_window_hints undecorated,above,sticky,skip_taskbar,skip_pager
  36.  
  37. # Use double buffering (reduces flicker, may not work for everyone)
  38. double_buffer yes
  39.  
  40. # Minimum size of text area, corresponds to the vertical panel 112px wide
  41. minimum_size 102 300
  42. maximum_width 102
  43.  
  44. # Draw shades?
  45. draw_shades no
  46.  
  47. # Draw outlines?
  48. draw_outline no
  49.  
  50. # Draw borders around text
  51. draw_borders no
  52.  
  53. # Draw borders around graphs
  54. draw_graph_borders yes
  55.  
  56. # Stippled borders?
  57. stippled_borders 2
  58.  
  59. # border margins
  60. #border_margin 4
  61. border_inner_margin 2
  62.  
  63. # border width
  64. border_width 1
  65.  
  66. # Default colors and also border colors
  67. default_shade_color e0e0e0
  68. default_outline_color white
  69.  
  70. # Dark-panel colors
  71. own_window_colour 404040
  72. default_color white
  73. color0 ACCAFF
  74. color1 FFA600
  75. color2 00c600
  76. color3 c60000
  77. color4 95FF00
  78. color5 C566FF
  79. color6 FF6060
  80. color7 FFFF00
  81.  
  82. # Text alignment, other possible values are commented
  83. #alignment top_left
  84. alignment top_right
  85. #alignment bottom_left
  86. #alignment bottom_right
  87. #alignment none
  88.  
  89. # Gap between borders of screen and text
  90. # same thing as passing -x at command line
  91. gap_x 5
  92. gap_y 5
  93.  
  94. # Subtract file system buffers from used memory?
  95. no_buffers yes
  96.  
  97. # set to yes if you want all text to be in uppercase
  98. uppercase no
  99.  
  100. # number of cpu samples to average
  101. # set to 1 to disable averaging
  102. cpu_avg_samples 2
  103.  
  104. # number of net samples to average
  105. # set to 1 to disable averaging
  106. net_avg_samples 2
  107.  
  108. # Force UTF8? note that UTF8 support required XFT
  109. override_utf8_locale yes
  110.  
  111. # Add spaces to keep things from moving about?  This only affects certain objects.
  112. use_spacer none
  113.  
  114. # Shows the maximum value in scaled graphs.
  115. show_graph_scale no
  116.  
  117. # Shows the time range covered by a graph.
  118. show_graph_range no
  119.  
  120. # Allow each port monitor to track at most this many connections (if 0 or not set, default is 256)
  121. #max_port_monitor_connections 256
  122.  
  123. # Maximum number of special things, e.g. fonts, offsets, aligns, etc.
  124. #max_specials 512
  125.  
  126. # Maximum size of buffer for user text, i.e. below TEXT line.
  127. #max_user_text 16384
  128.  
  129. # Timing interval for music player thread, e.g. mpd, audacious
  130. #music_player_interval (update_interval is default)
  131.  
  132. # Strictness of if_up. One of: up, link or address. The later ones imply the further ones.
  133. # Defaults to up.
  134. if_up_strictness address
  135.  
  136. # stuff after 'TEXT' will be formatted on screen
  137. TEXT
  138. ${color0}CPU:${color1} $cpu% ${cpubar}
  139. $color${top cpu 1} ${top name 1}
  140. $color${top cpu 2} ${top name 2}
  141. $color${top cpu 3} ${top name 3}
  142. $color${top cpu 4} ${top name 4}
  143. $color$stippled_hr${if_up eth0}
  144. ${color0}Ethernet$color (kB/s)
  145.  ${color0}D:${color2}${downspeedf eth0} ${tab 11,1}${color0}U:${color3}${upspeedf eth0}
  146.  ${color2}${downspeedgraph eth0 15,35 00b000 00e600} ${color3}${upspeedgraph eth0 15,35 b00000 e60000}$endif${if_up wlan0}
  147. ${color0}Wireless$color (kB/s)
  148.  ${color0}D:${color2}${downspeedf wlan0} ${tab 11,1}${color0}U:${color3}${upspeedf wlan0}
  149.  ${color2}${downspeedgraph wlan0 15,35 00b000 00e600} ${color3}${upspeedgraph wlan0 15,35 b00000 e60000}$endif
  150. $color$stippled_hr
  151. ${color0}Filesystem$color (free)
  152.  ${color4}${fs_free /} ${fs_bar /}
  153. $color$stippled_hr
  154. ${color0}MPD: $color$mpd_status ${if_match "$mpd_random" == "On"}${image /usr/share/icons/gnome/16x16/status/media-playlist-shuffle.png -p 85,168}${endif}
  155.  ${color7}$mpd_elapsed $mpd_bar
  156.  ${color}$mpd_artist
  157.  ${color}$mpd_album
  158.  ${color}$mpd_title
  159. $color$stippled_hr
  160. $color${execpi 60 cal -m | sed '1 s/.*/${color5}&$color/; 2 s/.*/${color0}&$color/; /^ \+$/ d' | sed "s/ $(date +%-d) /\${color6}&\${color}/" }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement