Advertisement
Guest User

Untitled

a guest
Dec 14th, 2010
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. ### my conky setup for t21 ###
  2.  
  3. # Maverick - CONKY
  4. # A comprehensive conky script, configured for use on
  5. # Ubuntu / Debian Gnome, without the need for any external scripts.
  6. #
  7. # Based on conky-jc and the default .conkyrc.
  8. # INCLUDES:
  9. # - tail of /var/log/messages
  10. # - netstat connections to your computer
  11. #
  12. # -- Pengo ([email protected])
  13. #
  14. # Create own window instead of using desktop (required in nautilus)
  15. own_window yes
  16. own_window_type override
  17. own_window_transparent yes
  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. # fiddle with window
  24. use_spacer right
  25. use_xft yes
  26.  
  27. # Use Xft?
  28. use_xft yes
  29.  
  30. # Xft font when Xft is enabled
  31. #xftfont Bitstream Vera Sans Mono:size=9
  32. #xftfont Terminus:size=9
  33. # xftfont Purisa:size=10
  34. # Text alpha when using Xft
  35. # xftalpha 0.8
  36. xftfont Comic Sans MS:size=10
  37.  
  38. # Update interval in seconds
  39. update_interval 3.0
  40.  
  41. # Minimum size of text area
  42. # minimum_size 300 5
  43.  
  44. # Maximum Width
  45. maximum_width 160
  46.  
  47. # Draw shades?
  48. draw_shades no
  49.  
  50. # Text stuff
  51. draw_outline no # amplifies text if yes
  52. draw_borders no
  53. # font
  54.  
  55. uppercase no # set to yes if you want all text to be in uppercase
  56.  
  57. # Stippled borders?
  58. straight_borders 3
  59.  
  60. # border margins
  61. border_margin 5
  62.  
  63. # border width
  64. border_width 1
  65.  
  66. # Default colors and also border colors, black
  67. default_color black
  68.  
  69. own_window_colour C59036
  70. own_window_transparent yes
  71.  
  72. # Text alignment, other possible values are commented
  73. #alignment top_left
  74. alignment top_right
  75. #alignment bottom_left
  76. #alignment bottom_right
  77.  
  78. # Gap between borders of screen and text
  79. gap_x 10
  80. gap_y 20
  81.  
  82. # stuff after 'TEXT' will be formatted on screen
  83. TEXT
  84. ${color black}Maverick
  85. ${color black}${time %a, } ${color black}${time %e %B %G}
  86. ${color black}${time %Z, }${color black}${time %I:%M:%S}
  87. ${color black}Kernel $kernel on $machine
  88. ${color black}CPU ${freq}MHz ${cpu cpu1}%
  89. ${color red}${cpubar cpu0 5,100}
  90. ${color black}MEM: ${color black}$memperc% $mem/$memmax
  91. ${color red}${membar 5,100}
  92. ${color black}SWAP: ${color black}$swapperc% $swap/$swapmax
  93. ${swapbar 5,100}
  94. ${color black}HOME: ${color black}${fs_free /home}/ ${fs_size /home}
  95. ${fs_bar 5,100 /home}
  96. ${color black} UP:${alignr}${upspeed wlan0}
  97. ${color black} DOWN:${alignr}${downspeed wlan0}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement