Advertisement
mousers3

Scarlett's Conky

Aug 3rd, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 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_right
  27. background no
  28. border_width 0
  29. cpu_avg_samples 2
  30. default_color f5f8c4
  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 no
  37. use_xft yes
  38. xftfont Droid Serif:size=10
  39. gap_x 5
  40. gap_y 60
  41. minimum_size 300 605
  42. net_avg_samples 2
  43. double_buffer yes
  44. out_to_console no
  45. out_to_stderr no
  46. extra_newline no
  47. own_window yes
  48. own_window_class normal
  49. #own_window_type override
  50. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  51. own_window_argb_visual yes
  52. own_window_transparent yes
  53. stippled_borders 0
  54. update_interval 2.0
  55. uppercase no
  56. use_spacer none
  57. show_graph_scale yes
  58. show_graph_range yes
  59. imlib_cache_size 0
  60.  
  61. TEXT
  62. ${alignc}${color 003700}${font Droid Serif:size=16}Scarlett's System${font}
  63. ${sysname} | ${kernel} on ${machine}
  64. $hr
  65. #${image /home/scarlett/Pictures/SGCConky.png -p 0,0}
  66. ${color black}Uptime:$color $uptime
  67. ${color black}Frequency (in MHz):$color $freq
  68. ${color black}Frequency (in GHz):$color $freq_g
  69. ${color black}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
  70. ${color black}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
  71. ${color black}CPU Usage:
  72. ${cpugraph cpu1 30,300 003700 ffffff -t}
  73. ${color 003700}CPU1 ${cpu cpu1} %
  74. ${color 003700}CPU2 ${cpu cpu2} %
  75. ${color 003700}CPU3 ${cpu cpu3} %
  76. ${color 003700}CPU4 ${cpu cpu4} %
  77. ${color black}Processes:$color $processes ${color black}Running:$color $running_processes
  78. ${color black}$hr
  79. ${color 003700}${font Droid Serif:size=16}File Systems:${font}
  80. ${color black} / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
  81. $hr
  82. ${color 003700}${font Droid Serif:size=16}Network:${font}
  83. ${downspeed wlan0} kb/s ${alignr}${downspeedgraph wlan0 28,260 FFFFFF 000000}
  84. ${upspeed wlan0} kb/s ${alignr}${upspeedgraph wlan0 28,260 FFFFFF 000000}
  85. $hr
  86.  
  87. ${color 003700}${font Droid Serif:size=16}Top Resource Hogs:${font}
  88. ${color black}Name PID CPU% MEM%
  89. $color${top name 1} ${top pid 1} ${alignc}${top cpu 1} ${alignr}${top mem 1}
  90. $color${top name 2} ${top pid 2} ${alignc}${top cpu 2} ${alignr}${top mem 2}
  91. $color${top name 3} ${top pid 3} ${alignc}${top cpu 3} ${alignr}${top mem 3}
  92. $color${top name 4} ${top pid 4} ${alignc}${top cpu 4} ${alignr}${top mem 4}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement