Advertisement
hreikin

conky.conf

Jan 17th, 2014
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 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=12
  20. xftalpha 1
  21. update_interval 1.0
  22. # .conkyrc - Edited from various examples across the 'net
  23. # Used by Craig Watson [ 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_right
  36. gap_x 30
  37. gap_y 150
  38.  
  39. # --- Colours, Sizes, Fonts & Margins --- #
  40. update_interval 2.0
  41. maximum_width 250
  42. stippled_borders 3
  43. border_margin 9
  44. border_width 10
  45. default_color grey
  46.  
  47. # --- Text --- #
  48. draw_outline no
  49. draw_borders no
  50. font Monospace:size=8:weight=bold
  51. uppercase no
  52. draw_shades yes
  53.  
  54. TEXT
  55. ${color orange}SYSTEM INFORMATION ${hr 2}$color
  56.  
  57. ${color white}${time %A},${time %e} ${time %B} ${time %G}${alignr}${time %H:%M:%S}
  58. ${color white}Machine$color $nodename ${alignr}${color white}Uptime$color $uptime
  59. ${color white}Kernel$color $kernel ${alignr}${color white}Arch$color $machine
  60.  
  61. ${color orange}CPU ${hr 2}$color
  62.  
  63. ${font Arial:bold:size=8}${color #ff9999}${execi 99999 cat /proc/cpuinfo | grep "model name" -m1 | cut -d":" -f2 | cut -d" " -f2- | sed 's#Processor ##'}$font$color
  64. ${color white}Freq:$color ${execi 20 sensors |grep "Core0 Temp" | cut -d" " -f4}$font$color$alignr${freq_g 2}GHz ${color #c0ff3e}${execi 20 sensors |grep "Core1 Temp" | cut -d" " -f4} $color${alignr}${color white}Processes:$color $running_processes/ $processes
  65. ${cpugraph cpu1 25,120 000000 ff6600 } ${cpugraph cpu2 25,120 000000 cc0033}
  66. ${color #ff6600}${cpubar cpu1 3,120} ${color #cc0033}${cpubar cpu2 3,120}$color
  67.  
  68. ${color orange}TOP 5 PROCESSES ${hr 2}$color
  69.  
  70. ${color #ff9999}NAME PID CPU MEM
  71. ${color #ffff99}1. ${top name 1}${top pid 1} ${top cpu 1} ${top mem 1}$color
  72. 2. ${top name 2}${top pid 2} ${top cpu 2} ${top mem 2}
  73. 3. ${top name 3}${top pid 3} ${top cpu 3} ${top mem 3}
  74. 4. ${top name 4}${top pid 4} ${top cpu 4} ${top mem 4}
  75. 5. ${top name 5}${top pid 5} ${top cpu 5} ${top mem 5}
  76.  
  77. ${color orange}MEMORY & SWAP ${hr 2}$color
  78.  
  79. ${color white}RAM$color $memperc% ${membar 6}$color
  80. ${color white}Swap$color $swapperc% ${swapbar 6}$color
  81.  
  82. ${color orange}DRIVES - FREE SPACE ${hr 2}$color
  83.  
  84. ${color white}Mibuntu$color ${fs_free_perc /}%$alignr${fs_free /}/ ${fs_size /}
  85. ${fs_bar 3 /}$color
  86.  
  87. ${color orange}ETHERNET (${addr eth0}) ${hr 2}$color
  88.  
  89. ${color white}Down:$color ${downspeed eth0} KB/s${alignr}${color white}Up:$color ${upspeed eth0} KB/s
  90. ${downspeedgraph eth0 25,120 000000 00ff00} ${alignr}${upspeedgraph eth0 25,120 000000 ff0000}$color
  91.  
  92. S H O R T C U T K E Y S
  93.  
  94. ${hr}
  95. Alt+F2$alignr Run Dialog
  96. Alt+F3$alignr Alt Menu
  97. Super+Space$alignr Main Menu
  98. Super+Tab$alignr Client Menu
  99. Super+t$alignr Terminal
  100. Super+f$alignr File Manager
  101. Super+e$alignr Editor
  102. Super+m$alignr Media Player
  103. Super+w$alignr Web Browser
  104. Super+l$alignr Lock Screen
  105. Super+v$alignr Volume Control
  106. Super+x$alignr Logout
  107. PrtSc$alignr Screenshot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement