Advertisement
Guest User

DawiX

a guest
Feb 11th, 2009
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont DejaVu Sans: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 200
  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. #default_shade_color black
  48. #default_outline_color white
  49. own_window_colour white
  50.  
  51. # Text alignment, other possible values are commented
  52. alignment top_left
  53. #alignment top_right
  54. #alignment bottom_left
  55. #alignment bottom_right
  56.  
  57. # Gap between borders of screen and text
  58. # same thing as passing -x at command line
  59. gap_x 12
  60. gap_y 65
  61.  
  62. # Subtract file system buffers from used memory?
  63. no_buffers yes
  64.  
  65. # set to yes if you want all text to be in uppercase
  66. uppercase no
  67.  
  68. # number of cpu samples to average
  69. # set to 1 to disable averaging
  70. cpu_avg_samples 2
  71.  
  72. # number of net samples to average
  73. # set to 1 to disable averaging
  74. net_avg_samples 2
  75.  
  76. # Force UTF8? note that UTF8 support required XFT
  77. override_utf8_locale yes
  78.  
  79. # Add spaces to keep things from moving about? This only affects certain objects.
  80. use_spacer none
  81.  
  82. #mpd specify your localhost
  83. mpd_host halbook
  84. mpd_port 6600
  85.  
  86.  
  87. TEXT
  88. ${font Aerial:style=Bold:pixelsize=10}DATE ${hr 2}${font}
  89. ${alignc 58}${font Radio Space:size=40}${time %H:%M}${font}
  90. ${voffset 4}${alignc}${font Aerial:style=Bold:pixelsize=10}${time %A %d, %B %Y}
  91.  
  92. ${font Aerial:style=Bold:pixelsize=10}SYSTEM ${hr 2}${font}
  93. ${font} Battery: ${alignr}${battery_percent BAT0}%
  94. ${font} Uptime: ${alignr}${uptime}
  95. ${font} Temperature: ${alignr}${acpitemp}°C
  96. ${font} CPU1: ${cpu cpu1}% ${alignr}${cpubar cpu1 8,60}
  97. ${font} CPU2: ${cpu cpu2}% ${alignr}${cpubar cpu2 8,60}
  98. ${font} RAM: $memperc% ${alignr}${membar 8,60}
  99. ${font} SWAP: $swapperc% ${alignr}${swapbar 8,60}
  100.  
  101. ${font Aerial:style=Bold:pixelsize=10}HD ${hr 2}${font}
  102. ${font} Root: ${fs_used /}/${fs_size /} ${alignr}${fs_bar 8,60 /}
  103. ${font} Home: ${fs_used /home}/${fs_size /home} ${alignr}${fs_bar 8,60 /home}
  104.  
  105. ${font Aerial:style=Bold:pixelsize=10}NETWORK ${hr 2}${font}
  106. ${font} Up: ${upspeed eth0} kb/s ${alignr}${upspeedgraph eth0 8,60 F57900 FCAF3E}
  107. ${font} Down: ${downspeed eth0} kb/s ${alignr}${downspeedgraph eth0 8,60 F57900 FCAF3E}
  108. ${font} Upload: ${alignr}${totalup eth0}
  109. ${font} Download: ${alignr}${totaldown eth0}
  110. ${font} Local Ip: ${alignr}${addr eth0}
  111.  
  112. ${font Aerial:style=Bold:pixelsize=10}MPD ${hr 2}${font}
  113. ${color FFFFFF}${alignc}${mpd_status}
  114.  
  115. ${font} Random:${color FFFFFF}${alignr}${mpd_random}
  116.  
  117. ${font} Artist: ${alignr}${mpd_artist}
  118. ${font} Title: ${alignr}${mpd_title}
  119. ${font} Album: ${alignr}${mpd_album}
  120.  
  121. ${font} ${mpd_elapsed}${alignr}${mpd_length}
  122. ${mpd_bar 3,200}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement