Advertisement
okubax

new conkyrc

Apr 20th, 2013
4,567
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont Monospace:size=7
  4. xftalpha 0.8
  5. text_buffer_size 2048
  6.  
  7. # Update interval in seconds
  8. update_interval 1
  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 240
  27.  
  28.  
  29. # Draw shades?
  30. draw_shades no
  31.  
  32. # Draw outlines?
  33. draw_outline no
  34.  
  35. # Draw borders around text
  36. draw_borders no
  37.  
  38. # Stippled borders?
  39. stippled_borders 0
  40.  
  41. # border margins
  42. #border_margin 5
  43.  
  44. # border width
  45. border_width 1
  46.  
  47. # Default colors and also border colors
  48. default_color grey
  49. #default_shade_color black
  50. #default_outline_color white
  51. own_window_colour 333333
  52.  
  53. # Text alignment, other possible values are commented
  54. #alignment top_left
  55. alignment top_right
  56. #alignment bottom_left
  57. #alignment bottom_right
  58.  
  59. # Gap between borders of screen and text
  60. # same thing as passing -x at command line
  61. #gap_x 30
  62. gap_x 12
  63. gap_y 60
  64.  
  65. # Subtract file system buffers from used memory?
  66. no_buffers yes
  67.  
  68. # set to yes if you want all text to be in uppercase
  69. uppercase no
  70.  
  71. # number of cpu samples to average
  72. # set to 1 to disable averaging
  73. cpu_avg_samples 2
  74.  
  75. # number of net samples to average
  76. # set to 1 to disable averaging
  77. net_avg_samples 2
  78.  
  79. # Force UTF8? note that UTF8 support required XFT
  80. override_utf8_locale yes
  81.  
  82. # Add spaces to keep things from moving about? This only affects certain objects.
  83. use_spacer none
  84.  
  85. TEXT
  86. Kernel
  87. +
  88. | + $nodename ${kernel}
  89. +
  90. Weather
  91. +
  92. | + ${execi 300 /home/ajibola/scripts/weather.sh "EUR|UK|UK241|LONDON"}
  93. +
  94. Time
  95. +
  96. | + ${time %H:%M} ${time %d %b %Y}
  97. +
  98. System
  99. +
  100. | + CPU: ${cpu cpu0}%
  101. | + RAM: $memperc%
  102. | + Temp: ${acpitemp}ºC
  103. | + /: ${fs_free /root}/${fs_size /root}
  104. | + /var: ${fs_free /var}/${fs_size /var}
  105. | + ~/: ${fs_free /home}/${fs_size /home}
  106. +
  107. Net
  108. +
  109. | + Up: ${upspeed wlan0}kb/s (${totalup wlan0})
  110. | + Down: ${downspeed wlan0}kb/s (${totaldown wlan0})
  111. +
  112. Processes
  113. +
  114. | + NAME $alignr PID CPU
  115. | + ${top name 1} $alignr ${top pid 1} ${top cpu 1}
  116. | + ${top name 2} $alignr ${top pid 2} ${top cpu 2}
  117. | + ${top name 3} $alignr ${top pid 3} ${top cpu 3}
  118. | + ${top name 4} $alignr ${top pid 4} ${top cpu 4}
  119. | + ${top name 5} $alignr ${top pid 5} ${top cpu 5}
  120. +
  121. Gmail
  122. +
  123. | Unread: ${execpi 300 python3 /home/ajibola/scripts/gmail.py}
  124. +
  125. Shortcuts
  126. +
  127. | + Alt+F2$alignr Run Dialog
  128. | + Alt+F3$alignr Alt Menu
  129. | + Super+Space$alignr Main Menu
  130. | + Super+Tab$alignr Client Menu
  131. | + Super+t$alignr Terminal
  132. | + Super+f$alignr File Manager
  133. | + Super+e$alignr Editor
  134. | + Super+m$alignr Media Player
  135. | + Super+w$alignr Web Browser
  136. | + Super+h$alignr Task Manager
  137. | + Super+l$alignr Lock Screen
  138. | + Super+v$alignr Volume Control
  139. | + Super+x$alignr Logout
  140. | + PrtSc$alignr Screenshot
  141. +
  142. Music ${if_mpd_playing}
  143. +
  144. | $mpd_artist
  145. | $mpd_album
  146. | ${mpd_title 15}
  147. | $mpd_elapsed/$mpd_length
  148. | $mpd_status
  149. | ${mpd_bar 5,180} ${else}stopped $endif
  150. +
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement