Advertisement
Guest User

Untitled

a guest
Jan 25th, 2012
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont OFL Sorts Mill Goudy:size=8
  4. #xftalpha 0.8
  5. text_buffer_size 2048
  6.  
  7. # Update interval in seconds
  8. update_interval 2
  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 override
  18. own_window_class conky
  19. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  20. background no
  21.  
  22. # Use double buffering (reduces flicker, may not work for everyone)
  23. double_buffer yes
  24.  
  25. # Minimum size of text area
  26. minimum_size 200 0
  27. #maximum_width 200
  28.  
  29. # Draw shades?
  30. draw_shades no
  31.  
  32. # Draw outlines?
  33. draw_outline no
  34.  
  35. # Draw borders around text
  36. draw_borders no
  37.  
  38. # Stippled borders?
  39. stippled_borders 0
  40.  
  41. # border margins
  42. border_inner_margin 5
  43.  
  44. # border width
  45. border_width 1
  46.  
  47. # Default colors and also border colors
  48. default_color black
  49. default_shade_color black
  50. default_outline_color black
  51. own_window_colour black
  52. color1 black
  53.  
  54. # Text alignment, other possible values are commented
  55. #alignment top_left
  56. alignment top_left
  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 20
  63. gap_y 5
  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 none
  84.  
  85. TEXT
  86.  
  87. ${font Goudy Bookletter 1911:style=Bold}SYSTEM${font} ${hr 2}
  88. ${alignc 9}${font Sniglet:size=16}Son${font}
  89.  
  90. ${alignc}${font Comfortaa:size=10}I am disapoint${font}
  91. ${voffset 2}${font StyleBats:size=16}i${font} Kernel: ${alignr}${kernel}
  92. ${font StyleBats:size=16}A${font} CPU1: ${cpu cpu1}% ${alignr}${cpubar cpu1 8,60}
  93. ${font StyleBats:size=16}A${font} CPU2: ${cpu cpu2}% ${alignr}${cpubar cpu2 8,60}
  94. ${font StyleBats:size=16}g${font} RAM: $memperc% ${alignr}${membar 8,60}
  95. ${font StyleBats:size=16}j${font} SWAP: $swapperc% ${alignr}${swapbar 8,60}
  96. ${font Webdings:size=16}~${font} Battery: ${battery_percent BAT0}% ${alignr}${battery_bar 8,60 BAT0}
  97. ${font StyleBats:size=16}l${font} Temperature: ${alignr}${acpitemp}C
  98. ${font StyleBats:size=16}q${font} Uptime: ${alignr}${uptime}
  99.  
  100. ${font Goudy Bookletter 1911:style=Bold}HD${font} ${hr 2}
  101. ${voffset 4}${font Pie charts for maps:size=14}7${font} ${voffset -5}Root:
  102. ${voffset 4}${fs_used /}/${fs_size /} ${alignr}${fs_bar 8,60 /}
  103. ${font Pie charts for maps:size=14}7${font} ${voffset -5}Home:
  104. ${voffset 4}${fs_used /home}/${fs_size /home} ${alignr}${fs_bar 8,60 /home}
  105.  
  106. ${if_existing /sys/class/net/eth0/operstate up}
  107. ${font Goudy Bookletter 1911:style=Bold}NETWORK${font} ${hr 2}
  108. ${voffset 4}${font PizzaDude Bullets:size=14}O${font} Up: ${upspeed eth0} ${alignr}${upspeedgraph eth0 8,60 000000 000000}
  109. ${voffset 4}${font PizzaDude Bullets:size=14}U${font} Down: ${downspeed eth0} ${alignr}${downspeedgraph eth0 8,60 000000 000000}
  110. ${else}
  111. ${if_existing /sys/class/net/eth1/operstate up}
  112. ${font Goudy Bookletter 1911:style=Bold}WIRELESS${font} ${hr 2}
  113. ${voffset 4}${font PizzaDude Bullets:size=14}O${font} Up: ${upspeed eth1} ${alignr}${upspeedgraph eth0 8,60 000000 000000}
  114. ${voffset 4}${font PizzaDude Bullets:size=14}U${font} Down: ${downspeed eth1} ${alignr}${downspeedgraph eth0 8,60 000000 000000}
  115. ${else}
  116. ${font Goudy Bookletter 1911:style=Bold}NETWORK DISABLED${font} ${hr 2}
  117. ${endif}
  118. ${endif}
  119.  
  120. ${font Goudy Bookletter 1911:style=Bold}KEYBINDINGS${font} ${hr 2}
  121. CTRL-T $alignr Terminal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement