Advertisement
Guest User

minimal conky config

a guest
Dec 1st, 2013
907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont "Liberation Mono":size=7
  4. xftalpha 0
  5. text_buffer_size 2048
  6.  
  7. # Update interval in seconds
  8. update_interval 1.5
  9.  
  10. # This is the number of times Conky will update before quitting.
  11. # Set to zero to run forever.
  12. total_run_times 0
  13.  
  14. # Create own window instead of using desktop (required in nautilus)
  15. own_window yes
  16. own_window_transparent yes
  17. own_window_type desktop
  18. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  19.  
  20. # Use double buffering (reduces flicker, may not work for everyone)
  21. double_buffer yes
  22.  
  23. # Minimum size of text area
  24. #minimum_size 200 0
  25. minimum_size 200 200
  26. maximum_width 230
  27.  
  28. # Draw shades?
  29. draw_shades yes
  30.  
  31. # Draw outlines?
  32. draw_outline no
  33.  
  34. # Draw borders around text
  35. draw_borders no
  36.  
  37. # Stippled borders?
  38. stippled_borders 0
  39.  
  40. # border margins
  41. # border_margin 1
  42.  
  43. # border width
  44. border_width 0
  45.  
  46. # Default colors and also border colors
  47. default_color white
  48. default_shade_color black
  49. # default_outline_color white
  50. # own_window_colour 333333
  51.  
  52. # Text alignment, other possible values are commented
  53. #alignment top_left
  54. alignment top_right
  55. #alignment bottom_left
  56. #alignment bottom_right
  57.  
  58. # Gap between borders of screen and text
  59. # same thing as passing -x at command line
  60. #gap_x 30
  61. gap_x 15
  62. gap_y 70
  63.  
  64. # Subtract file system buffers from used memory?
  65. no_buffers yes
  66.  
  67. # set to yes if you want all text to be in uppercase
  68. uppercase no
  69.  
  70. # number of cpu samples to average
  71. # set to 1 to disable averaging
  72. cpu_avg_samples 4
  73.  
  74. # number of net samples to average
  75. # set to 1 to disable averaging
  76. net_avg_samples 2
  77.  
  78. # Force UTF8? note that UTF8 support required XFT
  79. override_utf8_locale yes
  80.  
  81. # Add spaces to keep things from moving about? This only affects certain objects.
  82. use_spacer none
  83.  
  84. TEXT
  85. Kernel
  86. +
  87. | + $alignr${conky_build_arch}
  88. +
  89. Time
  90. +
  91. | + $alignr${time %H:%M} ${time %d %b %Y}
  92. +
  93. System
  94. +
  95. | + CPU: $alignr${cpu cpu0}% @ ${hwmon 1 temp 1}°C
  96. | + RAM: $alignr$mem/$memmax => $memperc% used
  97. | + Swap: $alignr$swap/$swapmax => $swapperc% used
  98. | + /: $alignr${fs_free /}/${fs_size /} => ${fs_free_perc /}% free
  99. | + /home: $alignr${fs_free /home}/${fs_size /home} => ${fs_free_perc /home}% free
  100. | + Battery: $alignr${battery_percent bat1}% remaining
  101. | + Uptime: $alignr$uptime
  102. | + Processes: $alignr$processes (${running_processes} running)
  103. +
  104. Network
  105. +
  106. | + Wired IP: $alignr${addr enp1s0}
  107. | + WiFi IP: $alignr${addr wlp2s0}
  108. | + Gateway: $alignr${if_gw}${gw_ip}$endif
  109. | + Dns: $alignr${nameserver}
  110. | + Wired Up: $alignr${upspeed enp1s0}kb/s (${totalup enp1s0})
  111. | + Wired Down: $alignr${downspeed enp1s0}kb/s (${totaldown enp1s0})
  112. | + Ssid: $alignr${wireless_essid wlp2s0}
  113. | + Signal: $alignr${wireless_link_qual_perc wlp2s0}%
  114. | + WiFi Up: $alignr${upspeed wlp2s0}kb/s (${totalup wlp2s0})
  115. | + WiFi Down: $alignr${downspeed wlp2s0n0s0}kb/s (${totaldown wlp2s0})
  116. +
  117. Processes
  118. +
  119. | + NAME $alignr PID CPU
  120. | + ${top name 1} $alignr ${top pid 1} ${top cpu 1}
  121. | + ${top name 2} $alignr ${top pid 2} ${top cpu 2}
  122. | + ${top name 3} $alignr ${top pid 3} ${top cpu 3}
  123. | + ${top name 4} $alignr ${top pid 4} ${top cpu 4}
  124. | + ${top name 5} $alignr ${top pid 5} ${top cpu 5}
  125. +
  126. Shortcuts
  127. +
  128. | + Super+t$alignr Terminal
  129. | + Super+f$alignr File Manager
  130. | + Super+e$alignr Mousepad
  131. | + Super+q$alignr Audacious
  132. | + Super+w$alignr Firefox
  133. | + Super+m$alignr Thunderbird
  134. | + Super+h$alignr Task Manager
  135. | + Alt+F1$alignr App Menu
  136. | + Alt+F2$alignr App Exec
  137. | + Cntrl+Esc$alignr Menu
  138. +
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement