Advertisement
Guest User

file conf.conkyrc

a guest
May 29th, 2012
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. ho creato un file.sh in cui ho inserito
  2. #!/bin/sh
  3. sleep 30 && conky -c ~/.conkyrc
  4. exit
  5. l' ho reso eseguibile einserito tra i programmi che partono all' avvio
  6. il mio file .conkyrc è come segue
  7.  
  8. # Use Xft?
  9. use_xft yes
  10. font snap-7
  11. #xftfont snap.se:size=6.5
  12. #xftfont Freemono:size=7:bold
  13. #xftfont cure.se:size=8
  14. xftfont Freesans:pixelsize=9
  15. xftalpha 1
  16. text_buffer_size 2048
  17.  
  18. # Update interval in seconds
  19. update_interval 1
  20.  
  21. # This is the number of times Conky will update before quitting.
  22. # Set to zero to run forever.
  23. total_run_times 0
  24.  
  25. # Create own window instead of using desktop (required in nautilus)
  26. own_window yes
  27. own_window_transparent yes
  28. own_window_type override
  29. #own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  30.  
  31. # Use double buffering (reduces flicker, may not work for everyone)
  32. double_buffer yes
  33.  
  34. # Minimum size of text area
  35. minimum_size 175
  36. maximum_width 200
  37.  
  38. # Draw shades?
  39. draw_shades no
  40.  
  41. # Draw outlines?
  42. draw_outline no
  43.  
  44. # Draw borders around text
  45. draw_borders no
  46.  
  47. # Stippled borders?
  48. stippled_borders 0
  49.  
  50. # border margins
  51. border_margin 5
  52.  
  53. # border width
  54. border_width 1
  55.  
  56. # Default colors and also border colors
  57. default_color e0e0e0
  58. #default_shade_color white
  59. #default_outline_color black
  60. #own_window_colour 000000
  61.  
  62. # Text alignment, other possible values are commented
  63. #alignment top_left
  64. alignment top_right
  65. #alignment bottom_left
  66. #alignment bottom_right
  67.  
  68. # Gap between borders of screen and text
  69. # same thing as passing -x at command line
  70. gap_x 35
  71. gap_y 175
  72.  
  73. # Subtract file system buffers from used memory?
  74. no_buffers yes
  75.  
  76. # set to yes if you want all text to be in uppercase
  77. uppercase no
  78.  
  79. # number of cpu samples to average
  80. # set to 1 to disable averaging
  81. cpu_avg_samples 1
  82.  
  83. # number of net samples to average
  84. # set to 1 to disable averaging
  85. net_avg_samples 1
  86.  
  87. # Force UTF8? note that UTF8 support required XFT
  88. override_utf8_locale yes
  89.  
  90. # Add spaces to keep things from moving about? This only affects certain objects.
  91. use_spacer none
  92.  
  93. TEXT
  94.  
  95. DATE ${hr 1}
  96. ${alignc 18}${font Freesans:pixelsize=23:bold}${time %H:%M}${font}
  97.  
  98. ${alignc}${font Freesans:pixelsize=10}${time %a %d %b %Y}${font}
  99.  
  100. SYS ${hr 1}
  101.  
  102. ${alignc}Ubuntu 64bit 12.04 Precise Pangolin
  103.  
  104. Uptime ${alignr}${uptime}
  105. Kernel ${alignr}${kernel}
  106. ${cpugraph 000000 ffffff}
  107. CPU ${alignr}${cpu cpu}% ${cpubar 4,60}
  108. #CPU2 ${freq_dyn_g 2} GHz ${alignr}${cpu cpu2}% ${cpubar cpu2 4,60}
  109. RAM ${alignr}$memperc% ${membar 4,60}
  110. SWAP ${alignr}$swapperc% ${swapbar 4,60}
  111.  
  112. HDD ${hr 1}
  113.  
  114. Filesystem ${alignr}${fs_used_perc /}% ${fs_bar 4,60 /}
  115. Home ${alignr}${fs_used_perc /home}% ${fs_bar 4,60 /home}
  116. #Packard Bell ${alignr}${fs_used_perc /media/Packard Bell}% ${fs_bar 4,60 /media/Packard Bell}
  117.  
  118. TOP ${hr 1}
  119.  
  120. ${top name 1} ${alignr}${top cpu 1} |${alignr}${top mem 1}
  121. ${top name 2} ${alignr}${top cpu 2} |${alignr}${top mem 2}
  122. ${top name 3} ${alignr}${top cpu 3} |${alignr}${top mem 3}
  123. ${top name 4} ${alignr}${top cpu 4} |${alignr}${top mem 4}
  124. ${top name 5} ${alignr}${top cpu 5} |${alignr}${top mem 5}
  125.  
  126. NET ${hr 1}
  127.  
  128. #${if_existing /proc/net/route wlan0}
  129. #Signal ${alignr}${wireless_link_qual wlan0}% ${wireless_link_bar 4,60 wlan0}
  130. #Up ${upspeed wlan0} kb/s ${alignr}${upspeedgraph wlan0 4,60 000000 000000}
  131. #Down ${downspeed wlan0} kb/s ${alignr}${downspeedgraph wlan0 4,60 000000 000000}
  132. #Local Ip ${alignr}${addr wlan0}
  133. #Public Ip ${alignr}${execi 1 ~/.scripts/ip.sh}
  134. #${else}${if_existing /proc/net/route eth0}
  135. Up ${upspeed eth0} kb/s ${alignr}${upspeedgraph eth0 4,60 000000 000000}
  136. Down ${downspeed eth0} kb/s ${alignr}${downspeedgraph eth0 4,60 000000 000000}
  137. Local Ip ${alignr}${addr eth0}
  138. #Public Ip ${alignr}${execi 1 ~/.scripts/ip.sh}
  139. #${downspeedgraph eth0 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement