Advertisement
andrecanhadas

.conkyrc

Jul 19th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.28 KB | None | 0 0
  1. # --- Window Layout & Options --- #
  2. own_window yes
  3. own_window_colour black
  4. own_window_class Conky
  5. own_window_transparent yes
  6. own_window_type normal
  7. #own_window_type override
  8. #own_window_argb_visual yes
  9. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  10.  
  11. double_buffer yes
  12. use_spacer right
  13. use_xft yes
  14. override_utf8_locale no
  15. alignment top_right
  16. gap_x 10
  17. gap_y 40
  18. background yes
  19.  
  20. # --- Colours, Sizes, Fonts & Margins --- #
  21. update_interval 1.0
  22. maximum_width 250
  23. minimum_size height 10
  24. stippled_borders 10
  25. border_margin 10
  26.  
  27. border_width 10
  28. default_color grey
  29.  
  30. # --- Text --- #
  31. draw_outline yes
  32. draw_borders no
  33. font Monospace:size=8:weight=bold
  34. uppercase no
  35. draw_shades yes
  36.  
  37. TEXT
  38. ${color green}${hr 2 }
  39. ${color}${alignc}INFORMAÇÕES DO SISTEMA
  40. ${color green}${hr 2 }
  41. ${color white}${time %a},${time %e} ${time %B} ${time %G}${color white}  Hora:${time %H:%M:%S}
  42. ${color white}Machine$color $nodename ${alignr}${color white}Uptime$color $uptime
  43. ${color white}Kernel$color  $kernel ${alignr}${color white}Arch$color $machine
  44.  
  45. ${color red}${hr 2 }
  46. ${color}${alignc}PROCESSADOR
  47. ${color red}${hr 2 }
  48. ${color white}Modelo:$color AMD Phenom II X4 3.4 Mhz
  49. ${color white}Frequencia:$color ${execi 20 sensors |grep "Core0 Temp" | cut -d" " -f4}$font$color$alignr${freq} MHz ${color #c0ff3e}${execi 20 sensors |grep "Core1 Temp" | cut -d" " -f4}  $color${alignr}${color white}Processos:$color $running_processes/ $processes
  50. ${color white}Loadavg:$color $loadavg
  51. ${color white}USO-CPU:$color $cpu% ${alignr}${cpugraph 6,150 000000 ff0000}$color
  52. ${color white}Temperatura: ${color}${execi 10 sensors | grep ^temp1 | tail -n 1 |awk '{print $2}'}
  53.  
  54. ${color #CC33FF}${hr 2 }
  55. ${color}${alignc}TOP 5 CPU/MEM
  56. ${color #CC33FF}${hr 2 }
  57. ${color white}NAME               PID      CPU      MEM
  58. 1. ${top name 1}${top pid 1}   ${top cpu 1}   ${top mem 1}$color
  59. 2. ${top name 2}${top pid 2}   ${top cpu 2}   ${top mem 2}
  60. 3. ${top name 3}${top pid 3}   ${top cpu 3}   ${top mem 3}
  61. 4. ${top name 4}${top pid 4}   ${top cpu 4}   ${top mem 4}
  62. 5. ${top name 5}${top pid 5}   ${top cpu 5}   ${top mem 5}
  63.  
  64. ${color orange}${hr 2 }
  65. ${color}${alignc}MEMORIA & SWAP
  66. ${color orange}${hr 2 }
  67. ${color white}RAM:$color $mem/$memmax - $memperc% ${membar}
  68. ${color white}SWAP:$color  $swapperc% - ${swapbar 6}$color
  69.  
  70. ${color 00EEFF}${hr 2 }
  71. ${color}${alignc}DISCO % USADO/TOTAL ${hr 2}$color
  72. ${color 00EEFF}${hr 2 }
  73. ${color white}Uso: $color  ${fs_used_perc /}%$alignr${fs_used /} / ${fs_size /}
  74. ${color white}Read:$color ${diskio_read}${alignr}${color white} Write: $color ${diskio_write}
  75. ${diskiograph_read sda 15,120 000000 00ff00} ${alignr}${diskiograph_write sda  15,120 000000 ff0000}$color
  76.  
  77. ${color FFFF33}${hr 2 }
  78. ${color}${alignc}INFORMÇÕES DA REDE
  79. ${color FFFF33}${hr 2 }
  80. ${tcp_portmon 1 1024 rhost 0}
  81. ${color white}ETH0:$color ${addr eth0}
  82. ${color white}Down:$color ${downspeed eth0}KB/s${alignr} ${color white}Up:$color ${upspeed eth0} KB/s
  83. ${downspeedgraph eth0 15,120 000000 00ff00} ${alignr}${upspeedgraph eth0 15,120 000000 ff0000}$color
  84. ${color white}ETH1:$color ${addr eth1}
  85. ${color white}Down:$color ${downspeed eth1}KB/s${alignr} ${color white}Up:$color ${upspeed eth1} KB/s
  86. ${downspeedgraph eth1 15,120 000000 00ff00} ${alignr}${upspeedgraph eth1 15,120 000000 ff0000}$color
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement