Advertisement
richardgv

conkyrc

Jun 22nd, 2011
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. # Conky, a system monitor, based on torsmo
  2. #
  3. # Any original torsmo code is licensed under the BSD license
  4. #
  5. # All code written since the fork of torsmo is licensed under the GPL
  6. #
  7. # Please see COPYING for details
  8. #
  9. # Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
  10. # Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
  11. # All rights reserved.
  12. #
  13. # This program is free software: you can redistribute it and/or modify
  14. # it under the terms of the GNU General Public License as published by
  15. # the Free Software Foundation, either version 3 of the License, or
  16. # (at your option) any later version.
  17. #
  18. # This program is distributed in the hope that it will be useful,
  19. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. # GNU General Public License for more details.
  22. # You should have received a copy of the GNU General Public License
  23. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. #
  25.  
  26. alignment top_left
  27. background no
  28. border_width 1
  29. cpu_avg_samples 2
  30. default_color white
  31. default_outline_color white
  32. default_shade_color white
  33. draw_borders no
  34. draw_graph_borders yes
  35. draw_outline no
  36. draw_shades yes
  37. double_buffer yes
  38. default_shade_color black
  39. use_xft yes
  40. xftfont Terminus:size=9
  41. gap_x 5
  42. gap_y 21
  43. minimum_size 200 5
  44. net_avg_samples 2
  45. no_buffers yes
  46. out_to_console no
  47. out_to_stderr no
  48. extra_newline no
  49. own_window yes
  50. own_window_class conky
  51. own_window_type desktop
  52. own_window_hints sticky
  53. own_window_transparent yes
  54. stippled_borders 0
  55. update_interval 1.5
  56. uppercase no
  57. use_spacer none
  58. show_graph_scale no
  59. show_graph_range no
  60.  
  61. TEXT
  62. $nodename - $sysname $kernel on $machine
  63. ${color grey}$hr${color}
  64. ${color grey}Uptime:$color $uptime ${alignr}${loadavg}
  65. ${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
  66. ${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
  67. ${color grey}CPU 1:$color ${if_existing /sys/bus/platform/devices/coretemp.0/temp1_input}${platform coretemp.0 temp 1}°${endif} ${cpu cpu1}% ${cpubar cpu1 4}
  68. ${color grey}CPU 2:$color ${if_existing /sys/bus/platform/devices/coretemp.1/temp1_input}${platform coretemp.1 temp 1}°${endif} ${cpu cpu2}% ${cpubar cpu2 4}
  69. ${color grey}Processes:$color $processes ${alignr}${color grey}Running:$color $running_processes
  70. ${color grey}File systems:
  71. / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
  72. ${color grey}$hr${color}
  73. ${color grey}Networking:${if_up ppp0}
  74. ${color grey}ppp0: Up:$color ${upspeed ppp0} ${color grey} - Down:$color ${downspeed ppp0}${endif}${if_up tun0}
  75. ${color grey}tun0: Up:$color ${upspeed tun0} ${color grey} - Down:$color ${downspeed tun0}${endif}
  76. ${color grey}$hr${color}
  77. ${color grey}Name PID CPU% MEM%
  78. ${color lightgrey} ${top name 1} ${alignr}${top pid 1} ${top cpu 1} ${top mem 1}
  79. ${color lightgrey} ${top name 2} ${alignr}${top pid 2} ${top cpu 2} ${top mem 2}
  80. ${color lightgrey} ${top name 3} ${alignr}${top pid 3} ${top cpu 3} ${top mem 3}
  81. ${color lightgrey} ${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem 4}
  82. ${color grey}$hr${color}
  83. ${color lightgrey} ${top_mem name 1} ${alignr}${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}
  84. ${color lightgrey} ${top_mem name 2} ${alignr}${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}
  85. ${color lightgrey} ${top_mem name 3} ${alignr}${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}
  86. ${color lightgrey} ${top_mem name 4} ${alignr}${top_mem pid 4} ${top_mem cpu 4} ${top_mem mem 4}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement