Here’s my conky script. If you don’t know what conky is it is a real lightweight and extremely customisable system monitoring program. This script is for my quad core so take out the extra cpu lines depending on how many cores you have. Feel free to share your config files below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
background yes use_xft yes xftfont HandelGotD:size=9 xftalpha 0.5 update_interval 4.0 total_run_times 0 own_window yes own_window_type normal own_window_transparent yes own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager double_buffer yes minimum_size 200 5 maximum_width 220 draw_shades no draw_outline no draw_borders no draw_graph_borders yes default_color grey default_shade_color red default_outline_color green alignment top_right gap_x 12 gap_y 48 no_buffers yes uppercase no cpu_avg_samples 2 override_utf8_locale yes TEXT ${alignc 35}${font Trebuchet MS:size=26} $nodename ${font} Uptime $alignr $uptime Load $alignr $loadavg eth0 $alignr ${addr eth0} Inbound (${totaldown eth0}) $alignr ${downspeed eth0} kb/s ${downspeedgraph eth0} Outbound (${totalup eth0}) $alignr ${upspeed eth0} kb/s ${upspeedgraph eth0} CPU ${acpitemp}°C $alignr {cpu cpu0}% ${cpubar cpu0} ${cpubar cpu1} ${cpubar cpu2} ${cpubar cpu3} MEM $alignc $mem / $memmax $alignr $memperc% $membar / $alignc ${fs_used /} / ${fs_size /} $alignr ${fs_free_perc /}% ${fs_bar /} /home $alignc ${fs_used /home} / ${fs_size /home} $alignr ${fs_free_perc /home}% ${fs_bar /home} Top Processes ${hr 2} NAME $alignr PID CPU ${top name 1} $alignr ${top pid 1} ${top cpu 1} ${top name 2} $alignr ${top pid 2} ${top cpu 2} ${top name 3} $alignr ${top pid 3} ${top cpu 3} ${top name 4} $alignr ${top pid 4} ${top cpu 4} ${top name 5} $alignr ${top pid 5} ${top cpu 5} ${top name 6} $alignr ${top pid 6} ${top cpu 6} ${top name 7} $alignr ${top pid 7} ${top cpu 7} |
Questions? Comments?