Advertisement
Guest User

Untitled

a guest
Aug 14th, 2010
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. own_window yes
  2. own_window_colour 0F0D0D
  3.  
  4. use_spacer right
  5. use_xft yes
  6.  
  7.  
  8. # Update interval in seconds
  9. update_interval 1
  10.  
  11. # This is the number of times Conky will update before quitting.
  12. # Set to zero to run forever.
  13. total_run_times 0
  14.  
  15. # Create own window instead of using desktop (required in nautilus)
  16. own_window yes
  17. own_window_transparent no
  18. own_window_type override
  19. own_window_hints undecorate,sticky,skip_taskbar,skip_pager
  20.  
  21. # Use double buffering (reduces flicker, may not work for everyone)
  22. double_buffer yes
  23.  
  24.  
  25. #colour
  26. default_color 808080
  27. own_window_colour 333333
  28.  
  29. #font
  30. use_xft yes
  31. xftfont Droid Sans:pixelsize=11
  32.  
  33. # Stippled borders?
  34. stippled_borders 0
  35.  
  36. # border margins
  37.  
  38.  
  39. # border width
  40. border_width 1
  41.  
  42.  
  43.  
  44. alignment top_left
  45. gap_x 5
  46. gap_y 5
  47.  
  48. # --- Colours, Sizes, Fonts & Margins --- #
  49.  
  50. minimum_size 1356 0
  51.  
  52. #stippled_borders 3
  53. #border_inner_margin 9
  54.  
  55.  
  56. # --- Text --- #
  57. draw_outline no
  58. draw_borders no
  59.  
  60. uppercase no
  61. draw_shades no
  62.  
  63. # --- if-up_strictness --- #
  64. if_up_strictness link
  65.  
  66. TEXT
  67. ${color}CPU0: ${color ffffff} ${execi 5 sensors | grep -A 0 'Core 0' | cut -c15-21} | ${color}CPU1: ${color ffffff} ${execi 5 sensors | grep -A 0 'Core 1' | cut -c15-21} | ${color}GPU: ${color ffffff} ${execi 20 aticonfig --adapter=0 --od-gettemperature | tail -n1 | gawk '{ printf $5 }'}°C | ${color}HDD: ${color ffffff} ${execi 60 sudo hddtemp /dev/sda | grep -A 0 '/dev/sda' | cut -c24-29} | ${color}RAM: ${color ffffff} $mem | ${color} Total Down: ${color ffffff} ${if_up eth0}${totaldown eth0}${else}${if_up wlan0}${totaldown wlan0}${endif}${endif} | ${color}Total Up: ${color ffffff}${if_up eth0}${totalup eth0}${else}${if_up wlan0}${totalup wlan0}${endif}${endif} | ${color} Down Speed: ${color ffffff} ${if_up eth0}${downspeed eth0}${else}${if_up wlan0}${downspeed wlan0}${endif}${endif}| ${color}Up Speed: ${color ffffff} ${if_up eth0}${upspeed eth0}${else}${if_up wlan0}${upspeed wlan0}${endif}${endif} ${alignr} ${color} Battery: ${color ffffff} ${battery_percent}% ${color} | Mail: ${color ffffff} ${execi 300 perl ~/scripts/gmail.pl n} new ${color} | ${color} Weather: ${color ffffff} ${execi 3600 python ~/scripts/conkyForecast.py --location=TUXX0002 --datatype=CC}, ${execi 3600 python ~/scripts/conkyForecast.py --location=TUXX0002 --datatype=HT} ${color}| ${color ffffff}${time %A} ${time %e} ${time %B} ${time %G} - ${time %H:%M:%S}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement