Advertisement
Guest User

conkyrccpu

a guest
Sep 3rd, 2014
680
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. # conky configuration
  2. #
  3. # The list of variables has been removed from this file in favour
  4. # of keeping the documentation more maintainable.
  5. # Check http://conky.sf.net for an up-to-date-list.
  6. #
  7. # For ideas about how to modify conky, please see:
  8. # http://crunchbanglinux.org/forums/topic/59/my-conky-config/
  9. #
  10. # For help with conky, please see:
  11. # http://crunchbanglinux.org/forums/topic/2047/conky-help/
  12. #
  13. # Enjoy! :)
  14. ##############################################
  15. # Settings
  16. ##############################################
  17. background yes
  18. use_xft yes
  19. xftfont Liberation Sans:size=10
  20. xftalpha 1
  21. update_interval 1.0
  22. # .conkyrc – Edited from various examples across the ‘net
  23. # Used by Craig Watson [ http://www.cwatson.org ] on Fedora 8
  24.  
  25. # — Window Layout & Options — #
  26. own_window yes
  27. own_window_colour brown
  28. own_window_transparent yes
  29. own_window_type desktop
  30. own_window_transparent yes
  31. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  32. double_buffer yes
  33. use_spacer right
  34. use_xft yes
  35. alignment top_middle
  36. gap_x -300
  37. gap_y 50
  38.  
  39. # — Colours, Sizes, Fonts & Margins — #
  40. update_interval 2.0
  41. minimum_size 300
  42. maximum_width 400
  43. stippled_borders 3
  44. border_margin 9
  45. border_width 10
  46. default_color white
  47. # — Text — #
  48. draw_outline no
  49. draw_borders no
  50. font Monospace:size=10:weight=bold
  51. uppercase no
  52. draw_shades yes
  53. text_buffer_size 1024
  54.  
  55. TEXT
  56. ${color orange}MEMORY ${hr 2}$color
  57.  
  58. ${color white}RAM$color${alignr}$memperc%
  59. ${membar 6}
  60. ${color white}SWAP$color${alignr}${swapperc}%
  61. ${swapbar 6}
  62. ${color white}BUFFERED$color${alignr}${buffers}
  63. ${color white}CACHED$color${alignr}${cached}
  64. ${color white}LOAD AVG$color${alignr}${loadavg}
  65.  
  66. ${color orange}CPU ${hr 2}$color
  67. ${color orange}Core 1${hr 2}$color
  68. Freq:${freq_g 1}GHz ${alignr}Core 1 Temp:$alignr${hwmon temp 2}°C
  69. ${cpubar cpu1}
  70. ${cpugraph cpu1 000000 00ff00}
  71. ${color orange}Core 2${hr 2}$color
  72. Freq:${freq_g 2}GHz ${alignr}Core 2 Temp:$alignr${hwmon temp 3}°C
  73. ${cpubar cpu2}
  74. ${cpugraph cpu2 000000 ff0000}
  75.  
  76. ${color orange}TOP 5 PROCESSES ${hr 2}$color
  77.  
  78. ${color #ff9999}NAME PID CPU MEM
  79. ${color #ffff99}1. ${top name 1}${top pid 1} ${top cpu 1} ${top mem 1}$color
  80. 2. ${top name 2}${top pid 2} ${top cpu 2} ${top mem 2}
  81. 3. ${top name 3}${top pid 3} ${top cpu 3} ${top mem 3}
  82. 4. ${top name 4}${top pid 4} ${top cpu 4} ${top mem 4}
  83. 5. ${top name 5}${top pid 5} ${top cpu 5} ${top mem 5}
  84.  
  85. ${color orange}ENTROPY ${hr 2}$color
  86.  
  87. ${color white}AVAILABLE$color${alignr}${entropy_avail}/${entropy_poolsize} (${entropy_perc}%)
  88. ${entropy_bar}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement