Guest User

Untitled

a guest
Apr 5th, 2012
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.57 KB | None | 0 0
  1. # THIS CONFIG RELIES ON 2 SCRIPTS, CPUSPEED AND CPUTEMP
  2. # YOUR SYSTEM MAY NOT REQUIRE THEM, REPLACE AS DESIRED                                                                                                                              
  3.                                                                                                                                                                                    
  4. # maintain spacing between certain elements                                                                                                                                        
  5. use_spacer yes                                                                                                                                                                      
  6.                                                                                                                                                                                    
  7. # set to yes if you want conky to be forked in the background                                                                                                                      
  8. background yes                                                                                                                                                                      
  9.                                                                                                                                                                                    
  10. use_xft yes                                                                                                                                                                        
  11.  
  12. # Xft font when Xft is enabled
  13. xftfont Bitstream Vera Sans Mono-7
  14. #xftfont Andale Mono-9
  15. #xftfont Clean-8
  16. #xftfont cubicfive10:pixelsize=8
  17. #xftfont squaredance10:pixelsize=14
  18. #xftfont swf!t_v02:pixelsize=10
  19.  
  20. # Text alpha when using Xft
  21. xftalpha 1
  22. mail_spool $MAIL
  23.  
  24. # Update interval in seconds
  25. update_interval 2.0
  26.  
  27. # Create own window instead of using desktop (required in nautilus)
  28. own_window no
  29.  
  30. # Use double buffering (reduces flicker, may not work for everyone)
  31. double_buffer yes
  32.  
  33. # Minimum size of text area
  34. minimum_size 280 5
  35.  
  36. # Draw shades?
  37. draw_shades yes
  38.  
  39. # Draw outlines?
  40. draw_outline no # amplifies text
  41.  
  42. # Draw borders around text
  43. draw_borders no
  44.  
  45. # Stippled borders?
  46. stippled_borders 0
  47.  
  48. # border margins
  49. border_margin 9
  50.  
  51. # border width
  52. border_width 1
  53.  
  54. # Default colors and also border colors, grey90 == #e5e5e5
  55. default_color grey90
  56. default_shade_color black
  57. default_outline_color DarkGrey
  58.  
  59. # Text alignment, other possible values are commented
  60. #alignment top_left
  61. alignment top_right
  62. #alignment bottom_left
  63. #alignment bottom_right
  64.  
  65. # Gap between borders of screen and text
  66. gap_x 24
  67. gap_y 24
  68.  
  69. # Subtract file system buffers from used memory?
  70. no_buffers yes
  71.  
  72. # set to yes if you want all text to be in uppercase
  73. uppercase no
  74.  
  75. # stuff after 'TEXT' will be formatted on screen
  76.  
  77. TEXT
  78. ${color #ffcb48}$nodename$color      ${color #ff0000}$sysname $kernel on $machine
  79. $color
  80.    ${color #98c2c7}Batt:$color   ${battery}
  81.  
  82. ${color #ffcb48}PROCESSING$color
  83.    ${color #78af78}$cpubar
  84.    ${color #78af78}${cpugraph 78af78 78af78}
  85.  
  86.    ${color #98c2c7}NAME             PID       CPU%      MEM%
  87.    ${color #e5e5e5}${top name 1} ${top pid 1}   ${top cpu 1}    ${top mem 1}
  88.    ${color #c4c4c4}${top name 2} ${top pid 2}   ${top cpu 2}    ${top mem 2}
  89.    ${color #a3a3a3}${top name 3} ${top pid 3}   ${top cpu 3}    ${top mem 3}
  90.    ${color #828282}${top name 4} ${top pid 4}   ${top cpu 4}    ${top mem 4}
  91.  
  92.    ${color #98c2c7}RAM Usage:$color $mem/$memmax - $memperc% ${color #78af78}${membar 6}${color}
  93.    ${color #98c2c7}Swap Usage:$color $swap/$swapmax - $swapperc% ${color #78af78}${swapbar 6}${color}
  94.    
  95.    ${color #98c2c7}NAME             PID       CPU%      MEM%
  96.    ${color #e5e5e5}${top_mem name 1} ${top_mem pid 1}   ${top_mem cpu 1}   ${top_mem mem 1}
  97.    ${color #c4c4c4}${top_mem name 2} ${top_mem pid 2}   ${top_mem cpu 2}   ${top_mem mem 2}
  98.    ${color #a3a3a3}${top_mem name 3} ${top_mem pid 3}   ${top_mem cpu 3}   ${top_mem mem 3}
  99.    ${color #828282}${top_mem name 4} ${top_mem pid 4}   ${top_mem cpu 4}   ${top_mem mem 4}
  100.  
  101.    ${color #98c2c7}/:$color       ${fs_free_perc /}%  $fs_free  ${color
  102. #78af78}${fs_bar 6 /}$color
  103.  
  104.    ${color #98c2c7}Upload:$color  ${upspeed wlan0}kb/s${color #98c2c7}
  105.    Download:$color  ${downspeed wlan0}kb/s
  106.  
  107. ${color a1ccea}Weather:
  108. ${color ffffff}${execi 3600 /home/koirn/.scripts/conky-weather.sh}
  109. [1]+  Done                    conky -q
Advertisement
Add Comment
Please, Sign In to add comment