Advertisement
Guest User

Untitled

a guest
Oct 24th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. # A comprehensive conky script, configured for use on
  2. # Ubuntu / Debian Gnome, without the need for any external scripts.
  3. #
  4. # Based on conky-jc and the default .conkyrc.
  5. # INCLUDES:
  6. # - tail of /var/log/messages
  7. # - netstat connections to your computer
  8. #
  9. # -- Pengo (conky@pengo.us)
  10. #
  11. # Create own window instead of using desktop (required in nautilus)
  12. # own_window_type override
  13. own_window yes
  14. own_window_type normal
  15. own_window_transparent yes
  16. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  17.  
  18. # Use double buffering (reduces flicker, may not work for everyone)
  19. double_buffer yes
  20. temperature_unit fahrenheit
  21. # fiddle with window
  22. use_spacer right
  23. use_xft yes
  24.  
  25. # Use Xft?
  26. use_xft yes
  27.  
  28. # Xft font when Xft is enabled
  29. # xftfont Bitstream Vera Sans Mono:size=9
  30. # xftfont Terminus:size=10
  31. # xftfont Purisa:size=10
  32. # Text alpha when using Xft
  33. # xftalpha 0.8
  34. xftfont Comic Sans MS:size=10
  35.  
  36. # Update interval in seconds
  37. update_interval 3.0
  38.  
  39. # Minimum size of text area
  40. minimum_size 350 5
  41.  
  42. # Maximum Width
  43. maximum_width 170
  44.  
  45. # Draw shades?
  46. draw_shades no
  47.  
  48. # Text stuff
  49. draw_outline no # amplifies text if yes
  50. draw_borders no
  51. # font
  52.  
  53. uppercase no # set to yes if you want all text to be in uppercase
  54.  
  55. # Stippled borders?
  56. straight_borders 3
  57.  
  58. # border margins
  59. border_margin 5
  60.  
  61. # border width
  62. border_width 1
  63.  
  64. # Default colors and also border colors, black
  65. default_color black
  66.  
  67. own_window_colour C59036
  68. own_window_transparent yes
  69.  
  70. # Text alignment, other possible values are commented
  71. #alignment top_left
  72. alignment top_right
  73. #alignment bottom_left
  74. #alignment bottom_right
  75.  
  76. # Gap between borders of screen and text
  77. gap_x 5
  78. gap_y 22
  79.  
  80. # stuff after 'TEXT' will be formatted on screen
  81. TEXT
  82. ${color ivory} Precise
  83. ${color ivory}${time %a, } ${color ivory}${time %e %B %G}
  84. ${color ivory}${time %Z, }${color ivory}${time %I:%M:%S}
  85. ${color ivory}Kernel $kernel
  86. # Total CPU: ${cpu cpu0}%
  87. ${color ivory}CPU1 ${freq}MHz ${cpu cpu1}%
  88. ${cpubar cpu1 5,100}
  89. ${color ivory}CPU2 ${freq}MHz ${cpu cpu2}%
  90. ${cpubar cpu2 5,100}
  91. ${color ivory}MEM: ${color ivory}$memperc% $mem/$memmax
  92. ${color ivory}${membar 5,100}
  93. ${color ivory}SWAP: ${color ivory}$swapperc% $swap/$swapmax
  94. ${swapbar 5,100}
  95. ${color ivory}HOME: ${color ivory}${fs_free /home}/ ${fs_size /home}
  96. ${fs_bar 5,100 /home}
  97. ${color ivory}Highest CPU:
  98. ${color ivory} ${top name 1}${top_mem cpu 1}
  99. ${color ivory} ${top name 2}${top cpu 2}
  100. ${color ivory} ${top name 3}${top cpu 3}
  101. ${color ivory} ${top name 4}${top cpu 4}
  102. ${color ivory}Highest MEM:
  103. ${color ivory} ${top_mem name 1}${top_mem mem 1}
  104. ${color ivory} ${top_mem name 2}${top_mem mem 2}
  105. ${color ivory} ${top_mem name 3}${top_mem mem 3}
  106. ${color ivory} ${top_mem name 4}${top_mem mem 4}
  107. ${color ivory} UP:${alignr}${upspeed wlan0}
  108. ${color ivory} DOWN:${alignr}${downspeed wlan0}
  109. ${color ivory} UP:${alignr}${upspeed eth0}
  110. ${color ivory} DOWN:${alignr}${downspeed eth0}
  111. # HDD temp: $alignr ${hddtemp /dev/sda}°F
  112. # ${execi 6 /usr/bin/sensors | grep [+] | cut -d"+" -f2 | cut -d"(" -f1}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement