Advertisement
freieschaf

conky_main

Nov 16th, 2011
586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 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 yes
  28. cpu_avg_samples 5
  29. net_avg_samples 5
  30. out_to_console no
  31. font anorexia #7x13
  32. own_window_transparent yes
  33. xftalpha 1.0
  34. update_interval 2
  35. own_window no
  36. double_buffer yes
  37. minimum_size 5 5
  38. draw_shades yes
  39. draw_outline no
  40. draw_borders yes
  41. stippled_borders 0
  42. border_width 2
  43. default_color white
  44. default_outline_color white
  45. default_shade_color black
  46. draw_borders no
  47. draw_graph_borders yes
  48. draw_outline no
  49. draw_shades no
  50. gap_x 20
  51. gap_y 35
  52. minimum_size 5 5
  53. net_avg_samples 2
  54. no_buffers yes
  55. out_to_console no
  56. out_to_stderr no
  57. extra_newline no
  58. own_window yes
  59. own_window_class Conky
  60. own_window_transparent yes
  61. own_window_type desktop
  62. stippled_borders 0
  63. uppercase no
  64. use_spacer right
  65. mpd_host 0.0.0.0
  66. mpd_port 6600
  67.  
  68. # stuff after 'TEXT' will be formatted on screen
  69. TEXT
  70. ${color #e43526}SYSTEM
  71. ${color white}${hr 1}
  72. ${color #e3ce83}Kernel: ${color #f9edc4}$kernel ${color #e3ce83}${alignr}Uptime: ${color #f9edc4}$uptime
  73. ${color #e3ce83}CPU : ${color #f9edc4}$freq MHz $cpu%${alignr}${acpitemp}C
  74. ${color #e3ce83} ${cpugraph 15,210 fef7b2 e18522}
  75. ${color #e3ce83}RAM : ${color #f9edc4}$memmax $memperc% ${membar 6}
  76. ${color #e3ce83}Swap : ${color #f9edc4}$swapmax $swapperc% ${swapbar 6}
  77.  
  78. ${color #e43526}POWER
  79. ${color white}${hr 1}
  80. ${color #e3ce83}AC Adapter: ${color #f9edc4}$acpiacadapter
  81. ${color #e3ce83}Battery : ${color #f9edc4}${battery_bar 6,100 BAT1} (${battery_percent BAT1}%) ${battery_time BAT1}
  82.  
  83. ${color #e43526}DISK
  84. ${color white}${hr 1}
  85. ${color #e3ce83}/ : ${color #f9edc4}${fs_size /} ${fs_used_perc /} % ${alignr}${fs_bar 6,100 /}
  86. ${color #e3ce83}/home : ${color #f9edc4}${fs_size /home} ${fs_used_perc /home} % ${alignr}${fs_bar 6,100 /home}
  87.  
  88. ${color #e43526}PROCESSES
  89. ${color white}${hr 1}
  90. ${color #e3ce83}Processes: ${color #f9edc4}$processes ${color #e3ce83}Running: ${color #f9edc4}$running_processes
  91.  
  92. ${color #e3ce83}Name PID CPU% MEM%
  93. ${color #f9edc4}${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
  94. ${color #f9edc4}${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
  95. ${color #f9edc4}${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
  96.  
  97. ${color #f9edc4}${top_mem name 1} ${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}
  98. ${color #f9edc4}${top_mem name 2} ${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}
  99. ${color #f9edc4}${top_mem name 3} ${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}
  100.  
  101. ${color #e43526}NETWORK
  102. ${color white}${hr 1}
  103. ${color #e3ce83}Down : ${color #f9edc4}${downspeed wlan0}${color #e3ce83}${alignr}Total : ${color #f9edc4}${totaldown wlan0}
  104. ${color #e3ce83}Up : ${color #f9edc4}${upspeed wlan0}${color #e3ce83}${alignr}Total : ${color #f9edc4}${totalup wlan0}
  105.  
  106. ${color #e43526}NOW PLAYING
  107. ${color white}${hr 1}
  108. ${color #e3ce83}Artist: ${color #f9edc4}$mpd_artist
  109. ${color #e3ce83}Title : ${color #f9edc4}${mpd_title 30}
  110. ${color #f9edc4}$mpd_bar
  111. ${color #f9edc4}$mpd_elapsed/$mpd_length ${alignc}$mpd_status ${alignr}$mpd_percent%
  112.  
  113.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement