Advertisement
Guest User

egcl

a guest
Dec 12th, 2008
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. # UBUNTU-CONKY
  2. # A comprehensive conky script, configured for use on
  3. # Ubuntu / Debian Gnome, without the need for any external scripts.
  4. #
  5.  
  6. # Use Xft?
  7. use_xft yes
  8. xftfont AvantGarde LT Medium-7
  9.  
  10. # Update interval in seconds
  11. update_interval 0.5
  12.  
  13. # This is the number of times Conky will update before quitting.
  14. # Set to zero to run forever.
  15. total_run_times 0
  16.  
  17. # Create own window instead of using desktop (required in nautilus)
  18. own_window yes
  19. own_window_transparent yes
  20. own_window_type normal
  21. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  22.  
  23. # Use double buffering (reduces flicker, may not work for everyone)
  24. double_buffer yes
  25.  
  26. # Minimum size of text area
  27. minimum_size 800 14
  28.  
  29. maximum_width 800
  30.  
  31. # Draw shades?
  32. draw_shades no
  33.  
  34. # Draw outlines?
  35. draw_outline no
  36.  
  37. # Draw borders around text
  38. draw_borders yes
  39.  
  40. # Stippled borders?
  41. stippled_borders 0
  42.  
  43. # border margins
  44. border_margin 6
  45.  
  46. # border width
  47. border_width 0
  48.  
  49. # Default colors and also border colors
  50. default_color 000000
  51. #default_shade_color white
  52. #default_outline_color black
  53. own_window_colour 3C4746
  54.  
  55. # Text alignment, other possible values are commented
  56. #alignment top_left
  57. alignment bottom_left
  58. #alignment bottom_left
  59. #alignment bottom_right
  60.  
  61. # Gap between borders of screen and text
  62. # same thing as passing -x at command line
  63. gap_x 5
  64. gap_y 750
  65.  
  66. # Subtract file system buffers from used memory?
  67. no_buffers yes
  68.  
  69. # set to yes if you want all text to be in uppercase
  70. uppercase no
  71.  
  72. # number of cpu samples to average
  73. # set to 1 to disable averaging
  74. cpu_avg_samples 2
  75.  
  76. # number of net samples to average
  77. # set to 1 to disable averaging
  78. net_avg_samples 2
  79.  
  80. # Force UTF8? note that UTF8 support required XFT
  81. override_utf8_locale yes
  82.  
  83. # Add spaces to keep things from moving about? This only affects certain objects.
  84. use_spacer yes
  85.  
  86.  
  87. TEXT
  88. Kernel: ${color ffffff}${kernel on} ${machine}${color} | uptime: ${color ffffff}${uptime_short}${color} | cpu: ${color ffffff}${cpu}%${color} | ${color}mem: ${color ffffff}$memperc${color}% | ${color}swap: ${color ffffff}$swapperc${color}% | ${color}/: ${color ffffff}$fs_free_perc${color}% | ${color}sdb1: ${color ffffff}${fs_free_perc /media/sdb1}${color} % | ${color}down: ${color ffffff}${downspeed ppp0}${color}kb/s | up: ${color ffffff}${upspeed ppp0}${color}kb/s${color} | ${color}ppp0: ${color ffffff}${addr ppp0}${color}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement