Guest User

Conky config http://kdemaker.wordpress.com

a guest
Apr 18th, 2014
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.38 KB | None | 0 0
  1. #
  2. # -------------------------------------
  3. # http://kdemaker.wordpress.com       \
  4. # Author: FORMOZA (Kamil Wiśniewski)  \
  5. # Email: formoza.river@gmail.com      \
  6. # -------------------------------------
  7. #
  8. # Use Xft?
  9. use_xft yes
  10. xftfont Monospace:size=7
  11. xftalpha 0.8
  12. text_buffer_size 2048
  13.  
  14. # Update interval in seconds
  15. update_interval 1
  16.  
  17. # This is the number of times Conky will update before quitting.
  18. # Set to zero to run forever.
  19. total_run_times 0
  20.  
  21. # Create own window instead of using desktop (required in nautilus)
  22.     own_window yes
  23.     own_window_transparent yes
  24.     own_window_type desktop
  25.     own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  26.  
  27. # Use double buffering (reduces flicker, may not work for everyone)
  28. double_buffer yes
  29.  
  30. # Minimum size of text area
  31. #minimum_size 200 0
  32. minimum_size 200 200
  33. maximum_width 250
  34.  
  35.  
  36. # Draw shades?
  37. draw_shades no
  38.  
  39. # Draw outlines?
  40. draw_outline no
  41.  
  42. # Draw borders around text
  43. draw_borders no
  44.  
  45. # Stippled borders?
  46. stippled_borders 0
  47.  
  48. # border margins
  49. #border_margin 5
  50.  
  51. # border width
  52. border_width 1
  53.  
  54. # Default colors and also border colors
  55. default_color grey
  56. #default_shade_color black
  57. #default_outline_color white
  58. own_window_colour 333333
  59.  
  60. # Text alignment, other possible values are commented
  61. #alignment top_left
  62. alignment top_right
  63. #alignment bottom_left
  64. #alignment bottom_right
  65.  
  66. # Gap between borders of screen and text
  67. # same thing as passing -x at command line
  68. #gap_x 30
  69. gap_x 12
  70. gap_y 100
  71.  
  72. # Subtract file system buffers from used memory?
  73. no_buffers yes
  74.  
  75. # set to yes if you want all text to be in uppercase
  76. uppercase no
  77.  
  78. # number of cpu samples to average
  79. # set to 1 to disable averaging
  80. cpu_avg_samples 2
  81.  
  82. # number of net samples to average
  83. # set to 1 to disable averaging
  84. net_avg_samples 2
  85.  
  86. # Force UTF8? note that UTF8 support required XFT
  87. override_utf8_locale yes
  88.  
  89. # Add spaces to keep things from moving about?  This only affects certain objects.
  90. use_spacer none
  91.  
  92. TEXT
  93. Kernel
  94.  +
  95.  | + $nodename
  96.  | + ${kernel}
  97.  | + Uptime: $uptime
  98.  +
  99. Weather
  100.  +
  101.  | + ${execi 300 ~/.config/weather.sh "EUR|PL|GTM1|LOWICZ"}
  102.  +
  103. Time
  104.  +
  105.  | + ${time %H:%M}     ${time %d %b %Y}
  106.  +
  107. System
  108.  +
  109.  | + CPU:  ${cpu cpu0}%
  110.  | + RAM:  $memperc%
  111.  | + Temp: ${acpitemp}ºC
  112.  | + /:    ${alignr}${fs_free /}
  113.  | + ${fs_bar 4,200 /}
  114.  | + /Windows: ${if_mounted /media/formoza/FE1C8CDA1C8C8F79}${alignr}${fs_free /media/formoza/FE1C8CDA1C8C8F79}
  115.  | + ${fs_bar 4,200 /media/formoza/FE1C8CDA1C8C8F79}${else}is not mounted$endif
  116.  | + /NTFS: ${if_mounted /media/formoza/36047C3C047C00E3}${alignr}${fs_free /media/formoza/36047C3C047C00E3}
  117.  | + ${fs_bar 4,200 /media/formoza/36047C3C047C00E3}${else}is not mounted$endif
  118.  +
  119. Net
  120.  +
  121.  | + Up:   ${upspeed eth1}kb/s (${totalup eth1})
  122.  | + Down: ${downspeed eth1}kb/s (${totaldown eth1})
  123.  +
  124. Processes
  125.  +
  126.  | + NAME  $alignr PID     CPU
  127.  | + ---------------------------------------
  128.  | + ${top name 1} $alignr ${top pid 1} ${top cpu 1}
  129.  | + ${top name 2} $alignr ${top pid 2} ${top cpu 2}
  130.  | + ${top name 3} $alignr ${top pid 3} ${top cpu 3}
  131.  | + ${top name 4} $alignr ${top pid 4} ${top cpu 4}
  132.  | + ${top name 5} $alignr ${top pid 5} ${top cpu 5}
  133.  | + ---------------------------------------
  134.  +
  135. ${if_running banshee}Music
  136.  +
  137.  | + Now playing: ${alignc}${exec banshee --query-title | cut -f2- -d" "}
  138.  | + ${execbar ~/.config/banshee.sh progress}
  139.  +
  140. $endif
Add Comment
Please, Sign In to add comment