Advertisement
corrosiontears

Conkyrc Original Modificado SempliceLinux

Jun 7th, 2013
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.47 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont Droid Sans:size=7.2
  4. xftalpha 0.8
  5. text_buffer_size 2048
  6.  
  7. # Update interval in seconds
  8. update_interval 5
  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 fixes cairo-compmgr issue...
  16. own_window yes
  17. own_window_transparent yes
  18. #own_window_type normal
  19. #own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  20. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  21.  
  22. # Use double buffering (reduces flicker, may not work for everyone)
  23. double_buffer yes
  24.  
  25. # Minimum size of text area
  26. #minimum_size 230 0
  27. #maximum_width 200
  28. maximum_width 270
  29.  
  30. # Draw shades?
  31. draw_shades no
  32.  
  33. # Draw outlines?
  34. draw_outline no
  35.  
  36. # Draw borders around text
  37. draw_borders no
  38.  
  39. # Stippled borders?
  40. stippled_borders 0
  41.  
  42. # border width
  43. border_width 1
  44.  
  45. # Default colors and also border colors
  46. default_color white
  47. #default_shade_color black
  48. #default_outline_color grey
  49. own_window_colour white
  50.  
  51. # Text alignment, other possible values are commented
  52. #alignment top_left
  53. alignment top_right
  54. #alignment bottom_left
  55. #alignment bottom_right
  56.  
  57. # Gap between borders of screen and text
  58. # same thing as passing -x at command line
  59. gap_x 35
  60. gap_y 35
  61.  
  62. # Subtract file system buffers from used memory?
  63. no_buffers yes
  64.  
  65. # set to yes if you want all text to be in uppercase
  66. uppercase no
  67.  
  68. # number of cpu samples to average
  69. # set to 1 to disable averaging
  70. cpu_avg_samples 2
  71.  
  72. # number of net samples to average
  73. # set to 1 to disable averaging
  74. net_avg_samples 1
  75.  
  76. # Force UTF8? note that UTF8 support required XFT
  77. override_utf8_locale yes
  78.  
  79. # Add spaces to keep things from moving about? This only affects
  80. #certain objects.
  81. use_spacer none
  82.  
  83. own_window_type desktop
  84.  
  85. TEXT
  86.    ${alignc 38}${font Arial Black:size=28}${time %H:%M}${font}
  87.    ${alignc}${time %A %d %B %Y}
  88.  
  89. ${font Arial:Italic:size=8}${execi 1800 /usr/share/semplice-default-settings/advanced/conky-fortune.py}${font}
  90. SYSTEM ${hr 2}
  91.  
  92.    ${alignc 17}${font Arial Black:size=16}${nodename}${font}
  93.    ${alignc} Semplice System (${execi 1000 cat /etc/semplice_version})
  94.  
  95. ${voffset 2}   Kernel: ${alignr}${kernel}
  96.  
  97.    CPU1: ${cpu cpu1}% ${alignr}${cpubar cpu1 8,60}
  98.    CPU2: ${cpu cpu2}% ${alignr}${cpubar cpu2 8,60}
  99.  
  100.    RAM: $memperc% ${alignr}${membar 8,60}
  101.  
  102.    SWAP: $swapperc% ${alignr}${swapbar 8,60}
  103.  
  104.    Uptime: ${alignr}${uptime}
  105.  
  106. #DATE ${hr 2}
  107. MEDIA ${hr 2}
  108.  
  109. ${execpi 10 /usr/share/semplice-default-settings/advanced/conky-harddisks.sh}
  110. ETHERNET (${addr eth0}) ${hr 2}
  111.  
  112.    Down: ${downspeedf eth0}kB/s ${alignr}Up: ${upspeedf eth0}kB/s
  113.    ${downspeedgraph eth0 30,120 000000 000000} ${alignr}${upspeedgraph eth0 30,120 000000 000000}
  114.  
  115. WIRELESS (${addr wlan0}) [${wireless_link_qual_perc wlan0}%] ${hr 2}
  116.  
  117.    Down: ${downspeedf wlan0}kB/s ${alignr}Up: ${upspeedf wlan0}kB/s
  118.    ${downspeedgraph wlan0 30,120 000000 000000} $alignr${upspeedgraph wlan0 30,120 000000 000000}
  119.  
  120. MONITOR ${hr 2}
  121.  
  122.    NAME $alignr PID CPU
  123.    ${top name 1} $alignr ${top pid 1} ${top cpu 1}
  124.    ${top name 2} $alignr ${top pid 2} ${top cpu 2}
  125.    ${top name 3} $alignr ${top pid 3} ${top cpu 3}
  126.    ${top name 4} $alignr ${top pid 4} ${top cpu 4}
  127.    ${top name 5} $alignr ${top pid 5} ${top cpu 5}
  128.    ${top name 6} $alignr ${top pid 6} ${top cpu 6}
  129.    ${top name 7} $alignr ${top pid 7} ${top cpu 7}
  130.    ${top name 8} $alignr ${top pid 8} ${top cpu 8}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement