Advertisement
Guest User

Conky

a guest
Dec 13th, 2011
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont Tamsyn:size=8
  4. xftalpha 1
  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_type desktop
  17. own_window_hints sticky,undecorated,skip_taskbar,skip_pager
  18. own_window_transparent yes
  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 1920 10
  25. #maximum_width 800
  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 0
  41.  
  42. # border width
  43. border_width 0
  44.  
  45. # Default colors and also border colors
  46. default_color c3c3c3 #default text color
  47. default_shade_color black
  48. #default_outline_color white
  49. own_window_colour 222222
  50.  
  51. # Text alignment, other possible values are commented
  52. alignment top_left
  53. #alignment top_middle
  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 0
  61. gap_y 0
  62.  
  63. # Subtract file system buffers from used memory?
  64. no_buffers no
  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 right
  82.  
  83.  
  84. TEXT
  85. ${voffset 2}${font Tamsyn:size=8}${color 6D6D6D}:: Home ${color lightblue}${fs_used /home} / ${fs_size /home}[${fs_used_perc /home}%] ${color 6D6D6D} :: tHDD ${color lightblue}${hddtemp /dev/sda}C ${color 6D6D6D} :: uCPU ${color lightblue}${cpu cpu1}% / ${cpu cpu2}% ${color 6D6D6D}:: tCPU ${color lightblue}${hwmon 1 temp 2}C / ${hwmon 1 temp 4}C ${color 6D6D6D}:: RAM ${color lightblue}${memperc}% ${color 6D6D6D}:: Wifi${color lightblue}${if_up wlan0} ON $else OFF $endif} ${color 6D6D6D}:: Calidad ${color lightblue}${wireless_link_qual_perc wlan0}% ${color 6D6D6D}:: Dw ${color lightblue}${downspeed wlan0}${color 6D6D6D} :: Up ${color lightblue}${upspeed wlan0}${color 6D6D6D} :: Bateria ${color lightblue}${battery_time BAT0}${color 6D6D6D} :: Hora ${color lightblue}${time %H:%M}${color 6D6D6D} :: Fecha ${color lightblue}${time %A}, ${time %d} ${time %B} ${time %Y}${color 6D6D6D} ::
  86.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement