Advertisement
Guest User

.conkyrc

a guest
Aug 17th, 2011
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont Monospace:size=7.5
  4. xftalpha 0.9
  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 200 0
  25.  
  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 222222
  47. #default_color white
  48. #default_shade_color black
  49. #default_outline_color white
  50. own_window_colour 333333
  51.  
  52. # Text alignment, other possible values are commented
  53. #alignment top_left
  54. alignment top_right
  55. #alignment bottom_left
  56. #alignment bottom_right
  57.  
  58. # Gap between borders of screen and text
  59. # same thing as passing -x at command line
  60. gap_x 30
  61. gap_y 80
  62.  
  63. # Subtract file system buffers from used memory?
  64. no_buffers yes
  65.  
  66. # set to yes if you want all text to be in uppercase
  67. uppercase no
  68.  
  69. # number of cpu samples to average
  70. # set to 1 to disable averaging
  71. cpu_avg_samples 2
  72.  
  73. # number of net samples to average
  74. # set to 1 to disable averaging
  75. net_avg_samples 2
  76.  
  77. # Force UTF8? note that UTF8 support required XFT
  78. override_utf8_locale yes
  79.  
  80. # Add spaces to keep things from moving about? This only affects certain objects.
  81. use_spacer none
  82.  
  83. TEXT
  84. ULTRABLACK IS #!
  85. |
  86. Up/Load
  87. +
  88. | - - - - - + $nodename - $sysname $kernel - $freq Mhz
  89. | - - - - - + Uptime: $uptime load: $loadavg
  90. +
  91. Time
  92. +
  93. | - - - - - + ${time %H:%M} ${time %d %b %Y}
  94. +
  95. System
  96. +
  97. | - - - - - + CPU: ${cpu cpu}%
  98. | - - - - - + RAM: $memperc%
  99. | - - - - - + Temp: ${i2c 4-0048 temp 1}ºC
  100. | - - - - - + Fan: ${platform pc87360.2080 fan 1} RPM
  101. | - - - - - + /: ${fs_free /root}/${fs_size /root}
  102. | - - - - - + /media/datos/: ${fs_free /media/datos}/${fs_size /media/datos}
  103. | - - - - - + /usr/portage/: ${fs_free /usr/portage}/${fs_size /usr/portage}
  104. | - - - - - + /var/portage/distfiles/: ${fs_free /var/portage/distfiles}/${fs_size /var/portage/distfiles}
  105. | - - - - - + Last sync: ${execi 180 date -d "`cat /usr/portage/metadata/timestamp.chk`"}
  106. +
  107. Net
  108. +
  109. | - - - - - + Up: ${upspeed eth0} (${totalup eth0})
  110. | - - - - - + Down: ${downspeed eth0} (${totaldown eth0})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement