Advertisement
Guest User

conky

a guest
Aug 22nd, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. # Create own window instead of using desktop (required in nautilus)
  2. # own_window yes
  3. # own_window_type override
  4. background no
  5. own_window yes
  6. own_window_type normal
  7. own_window_transparent yes
  8. own_window_argb_visual yes
  9. own_window_argb_value 255
  10. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  11.  
  12. # Use double buffering (reduces flicker, may not work for everyone)
  13. double_buffer yes
  14.  
  15. # fiddle with window
  16. use_spacer right
  17.  
  18. # Use Xft?
  19. use_xft yes
  20. xftfont LiberationSans:size=8
  21. xftalpha 0.8
  22. text_buffer_size 2048
  23.  
  24. # Update interval in seconds
  25. update_interval 3.0
  26.  
  27. # Minimum size of text area
  28. # minimum_size 250 5
  29. # maximum_width 300
  30.  
  31. # Draw shades?
  32. draw_shades no
  33.  
  34. # Text stuff
  35. draw_outline no # amplifies text if yes
  36. draw_borders no
  37. uppercase no # set to yes if you want all text to be in uppercase
  38.  
  39. # Stippled borders?
  40. stippled_borders 0
  41.  
  42. # border margins
  43. border_margin 9
  44.  
  45. # border width
  46. border_width 10
  47.  
  48. # Default colors and also border colors, grey90 == #e5e5e5
  49. default_color e5e5e5
  50. color0 66cccc # 'header' color
  51.  
  52. own_window_colour brown
  53.  
  54. # Text alignment, other possible values are commented
  55. #alignment top_left
  56. #alignment top_right
  57. #alignment bottom_left
  58. alignment bottom_right
  59.  
  60. # Gap between borders of screen and text
  61. gap_x 20
  62. gap_y 30
  63.  
  64.  
  65.  
  66. TEXT
  67.  
  68. ##################
  69. ## NETWORK ##
  70. ##################
  71. ${voffset 6}${font WenQuanYiMicroHei:bold:size=8.75}${color4}NETWORK${offset 8}${color8}${voffset -2}${hr 2}${font}
  72. ${voffset 4}${font PizzaDudeBullets:size=10}${color2}a${font}${color6}${offset 5}Private${offset 3}IP${alignr}${addr eth0}
  73. ${font PizzaDudeBullets:size=10}${color2}a${font}${color6}${offset 5}Public${offset 7}IP${alignr}${execi 1800 wget -q -O - checkip.dyndns.org | sed -e 's/[^[:digit:]\|.]//g'}
  74. ${voffset 4}${font PizzaDudeBullets:size=10}${color2}T${font}${color6}${offset 5}Pobrane:
  75. ${voffset 4}${font PizzaDudeBullets:size=10}${color2}T${font}${color6}${offset 5}Dzisiaj${alignr}${execi 300 vnstat -i ppp0 | grep "today" | awk '{print $2 $3}'}
  76. ${font PizzaDudeBullets:size=10}${color2}T${font}${color6}${offset 5}W tygodniu${alignr}${execi 300 vnstat -i ppp0 -w | grep "current week" | awk '{print $3 $4}'}
  77. ${font PizzaDudeBullets:size=10}${color2}T${font}${color6}${offset 5}W miesiącu${alignr}${execi 300 vnstat -i ppp0 -m | tail -3 | head -1 | awk '{print $3 $4}'}
  78. ${voffset 4}${font PizzaDudeBullets:size=10}${color2}N${font}${color6}${offset 5}Wysłane:
  79. ${voffset 4}${font PizzaDudeBullets:size=10}${color2}N${font}${color6}${offset 5}Dzisiaj${alignr}${execi 300 vnstat -i ppp0 | grep "today" | awk '{print $5 $6}'}
  80. ${font PizzaDudeBullets:size=10}${color2}N${font}${color6}${offset 5}W tygodniu${alignr}${execi 300 vnstat -i ppp0 -w | grep "current week" | awk '{print $6 $7}'}
  81. ${font PizzaDudeBullets:size=10}${color2}N${font}${color6}${offset 5}W miesiącu${alignr}${execi 300 vnstat -i ppp0 -m | tail -3 | head -1 | awk '{print $6 $7}'}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement