Advertisement
Guest User

Untitled

a guest
Jan 5th, 2013
985
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. #To have conky start automatically when the Pi is booted
  2. #Edit the file called autostart in
  3. # /etc/xdg/lxsession/LXDE
  4. #Add to the bottom of the file @conky
  5.  
  6. background yes
  7. use_xft yes
  8. xftfont 123:size=8
  9. xftalpha 0.1
  10. update_interval 2
  11. total_run_times 0
  12. own_window yes
  13. own_window_type normal
  14. own_window_transparent yes
  15. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  16. double_buffer yes
  17. minimum_size 250 5
  18. maximum_width 400
  19. draw_shades no
  20. draw_outline no
  21. draw_borders no
  22. draw_graph_borders no
  23. default_color gray
  24. default_shade_color red
  25. default_outline_color green
  26. alignment top_right
  27. gap_x 10
  28. gap_y 10
  29. no_buffers no
  30. uppercase no
  31. cpu_avg_samples 2
  32. net_avg_samples 1
  33. override_utf8_locale yes
  34. use_spacer yes
  35. text_buffer_size 256
  36.  
  37. TEXT
  38.  
  39. ${font Arial:size=20}${color Red2}RASPBERRY${color Ivory}PI
  40. ${color Ivory}${time %T}
  41. ${font Arial:size=15}${time %A %d %B %Y}
  42.  
  43. ${voffset -80}
  44. ${color DimGray}
  45. ${font}
  46. ${font Arial:bold:size=10}${color royal blue}SYSTEM ${color DarkSlateGray} ${hr 2}
  47. $font${color DimGray}$sysname $kernel $alignr $machine
  48. ARM 1176JZF-S $alignr${freq_g cpu0}Ghz
  49. Uptime $alignr${uptime}
  50. File System $alignr${fs_type}
  51.  
  52.  
  53. ${font Arial:bold:size=10}${color royal blue}PROCESSORS ${color DarkSlateGray}${hr 2}
  54. $font${color DimGray}CPU ${cpu cpu1}% ${cpubar cpu1}
  55. ${color dim gray}${cpugraph}
  56.  
  57. ${font Arial:bold:size=10}${color royal blue}MEMORY ${color DarkSlateGray}${hr 2}
  58. $font${color DimGray}MEM $alignc $mem / $memmax $alignr $memperc%
  59. $membar
  60. Free Memory $memfree
  61.  
  62. ${font Arial:bold:size=10}${color royal blue}HDD ${color DarkSlateGray}${hr 2}
  63. $font${color DimGray}/home $alignc ${fs_used /home} / ${fs_size /home} $alignr ${fs_free_perc /home}%
  64. ${fs_bar /home}
  65.  
  66. ${font Arial:bold:size=10}${color royal blue}TOP PROCESSES${color DarkSlateGray}${hr 2}
  67. ${color DimGray}Name${alignr}PID CPU% MEM
  68. $font${top name 1} ${alignr}${top pid 1} ${top cpu 1} ${top mem 1}
  69. $font${top name 2} ${alignr}${top pid 2} ${top cpu 2} ${top mem 2}
  70. $font${top name 3} ${alignr}${top pid 3} ${top cpu 3} ${top mem 3}
  71. $font${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem 4}
  72.  
  73. ${font Arial:bold:size=10}${color royal blue}NETWORK ${color DarkSlateGray}${hr 2}
  74. $font${color DimGray}IP on eth0 $alignr ${addr eth0}
  75.  
  76. Down $alignr ${downspeed eth0} kb/s
  77. Up $alignr ${upspeed eth0} kb/s
  78.  
  79. Downloaded: $alignr ${totaldown eth0}
  80. Uploaded: $alignr ${totalup eth0}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement