Advertisement
mousers3

Scarlett's Conky 2013

Mar 29th, 2013
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1.  
  2. # Conky, a system monitor, based on torsmo
  3. #
  4. # Any original torsmo code is licensed under the BSD license
  5. #
  6. # All code written since the fork of torsmo is licensed under the GPL
  7. #
  8. # Please see COPYING for details
  9. #
  10. # Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
  11. # Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
  12. # All rights reserved.
  13. #
  14. # This program is free software: you can redistribute it and/or modify
  15. # it under the terms of the GNU General Public License as published by
  16. # the Free Software Foundation, either version 3 of the License, or
  17. # (at your option) any later version.
  18. #
  19. # This program is distributed in the hope that it will be useful,
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. # GNU General Public License for more details.
  23. # You should have received a copy of the GNU General Public License
  24. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  25. #
  26.  
  27. alignment top_right
  28. background no
  29. border_width 0
  30. cpu_avg_samples 2
  31. default_color f5f8c4
  32. default_outline_color white
  33. default_shade_color white
  34. draw_borders no
  35. draw_graph_borders yes
  36. draw_outline no
  37. draw_shades no
  38. use_xft yes
  39. xftfont Droid Serif:size=10
  40. gap_x 5
  41. gap_y 50
  42. minimum_size 320 1060
  43. net_avg_samples 2
  44. double_buffer yes
  45. out_to_console no
  46. out_to_stderr no
  47. extra_newline no
  48. own_window yes
  49. own_window_class Conky
  50. own_window_type normal
  51. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  52. own_window_argb_visual yes
  53. own_window_transparent yes
  54. stippled_borders 0
  55. update_interval 5.0
  56. uppercase no
  57. use_spacer none
  58. show_graph_scale yes
  59. show_graph_range yes
  60. imlib_cache_size 0
  61. #lua_load $HOME/v9000/v9000.lua
  62. #lua_draw_hook_pre weather
  63. #lua_load $HOME/v9000/weather_script.lua
  64. lua_load $HOME/ScarlettConky.lua
  65. lua_draw_hook_post conky_main
  66.  
  67. TEXT
  68.  
  69. ${voffset 100}
  70. #${sysname} | ${kernel} on ${machine}
  71. #$hr
  72. ${color 589bc8}Uptime:$color $uptime
  73. ${color 589bc8}Frequency (in MHz):$color $freq
  74. ${color 589bc8}Frequency (in GHz):$color $freq_g
  75. ${color 589bc8}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
  76. ${color 589bc8}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
  77. ${color 589bc8}CPU Usage:
  78. ${cpugraph 30,300 589bc8 ffffff}
  79. ${color white}CPU1 ${cpu cpu1} % ${color white}CPU5 ${cpu cpu5} %
  80. ${color white}CPU2 ${cpu cpu2} % ${color white}CPU6 ${cpu cpu6} %
  81. ${color white}CPU3 ${cpu cpu3} % ${color white}CPU7 ${cpu cpu7} %
  82. ${color white}CPU4 ${cpu cpu4} % ${color white}CPU8 ${cpu cpu8} %
  83. ${color 589bc8}Processes:$color $processes ${color 589bc8}Running:$color $running_processes
  84. #${color yellow}$hr
  85.  
  86. #${color white}${font Droid Serif:size=16}File Systems:${font}
  87. #${color yellow} / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
  88. #${color yellow} / $color${fs_used /home}/${fs_size /home} ${fs_bar 6 /home}
  89. #$hr
  90. ${voffset 125}
  91. #${color white}${font Droid Serif:size=16}Network:${font}
  92. ${downspeed wlan0} kb/s ${alignr}${downspeedgraph wlan0 28,260 FFFFFF 000000}
  93. ${upspeed wlan0} kb/s ${alignr}${upspeedgraph wlan0 28,260 FFFFFF 000000}
  94. #$hr
  95.  
  96. #${color white}${font Droid Serif:size=16}Top Resource Hogs:${font}
  97. ${voffset 15}
  98. ${color 589bc8}Name PID CPU% MEM%
  99. $color${top name 1} ${top pid 1} ${alignc}${top cpu 1} ${alignr}${top mem 1}
  100. $color${top name 2} ${top pid 2} ${alignc}${top cpu 2} ${alignr}${top mem 2}
  101. $color${top name 3} ${top pid 3} ${alignc}${top cpu 3} ${alignr}${top mem 3}
  102. $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