Advertisement
alensiljak

my first .conkyrc

Aug 30th, 2012
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.25 KB | None | 0 0
  1. # conky configuration
  2. # edited by darcon@gmail.com
  3.  
  4. # set to yes if you want Conky to be forked in the background
  5. #background no
  6. background yes
  7.  
  8. # Use Xft?
  9. use_xft yes
  10. #use_xft no
  11.  
  12. # Xft font when Xft is enabled
  13. #xftfont Bitstream Vera Sans Mono:size=8
  14. #xftfont Terminus:size=8
  15. xftfont Tahoma:size=8
  16.  
  17. # Text alpha when using Xft
  18. xftalpha 0.8
  19.  
  20. # Print everything to console?
  21. # out_to_console no
  22.  
  23. # mail spool
  24. #mail_spool $MAIL
  25.  
  26. # Update interval in seconds
  27. update_interval 2.0
  28.  
  29. # This is the number of times Conky will update before quitting.
  30. # Set to zero to run forever.
  31. total_run_times 0
  32.  
  33. # Create own window instead of using desktop (required in nautilus)
  34. #own_window no
  35. own_window yes
  36. #own_window_type desktop
  37. own_window_type normal
  38. own_window_transparent yes
  39. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  40.  
  41. # Use double buffering (reduces flicker, may not work for everyone)
  42. double_buffer yes
  43. #double_buffer no
  44.  
  45. # Minimum size of text area
  46. #minimum_size 1000 5
  47. minimum_size 100 5
  48.  
  49. # Draw shades?
  50. draw_shades yes
  51. #draw_shades no
  52.  
  53. # Draw outlines?
  54. draw_outline no
  55.  
  56. # Draw borders around text
  57. draw_borders no
  58.  
  59. # Stippled borders?
  60. stippled_borders 8
  61.  
  62. # border margins
  63. #border_margin 4
  64. border_inner_margin 4
  65.  
  66. # border width
  67. border_width 1
  68.  
  69. # Default colors and also border colors
  70. default_color white
  71. default_shade_color black
  72. default_outline_color white
  73.  
  74. # Text alignment, other possible values are commented
  75. #alignment top_left
  76. alignment top_right
  77. #alignment bottom_left
  78. #alignment bottom_right
  79.  
  80. # Gap between borders of screen and text
  81. # same thing as passing -x at command line
  82. #gap_x 450
  83. gap_x 0
  84. gap_y 0
  85.  
  86. # Subtract file system buffers from used memory?
  87. no_buffers yes
  88.  
  89. # set to yes if you want all text to be in uppercase
  90. uppercase no
  91.  
  92. # number of cpu samples to average
  93. # set to 1 to disable averaging
  94. cpu_avg_samples 2
  95.  
  96. # number of net samples to average
  97. # set to 1 to disable averaging
  98. net_avg_samples 2
  99.  
  100. # Force UTF8? note that UTF8 support required XFT
  101. override_utf8_locale no
  102.  
  103. # Add spaces to keep things from moving about?  This only affects certain objects.
  104. #use_spacer yes
  105. use_spacer right
  106.  
  107. # variable is given either in format $variable or in ${variable}. Latter
  108. # allows characters right after the variable and must be used in network
  109. # stuff because of an argument
  110.  
  111. # stuff after 'TEXT' will be formatted on screen
  112.  
  113. TEXT
  114.  
  115.  
  116. ${color slate grey}${time %a, } ${color }${time %e %B %G}
  117. ${color slate grey}${time %Z:    }${color }${time %H:%M:%S}
  118. ${color slate grey}CET:    ${color }${tztime Europe/Sarajevo %H:%M:%S}
  119. ${color slate grey}UpTime: ${color }$uptime
  120. ${color slate grey}Kern: ${color }$kernel
  121. ${color slate grey}CPU: ${color } $cpu% ${acpitemp}C
  122. ${color slate grey}IP: ${color } ${addr eth0}
  123. ${cpugraph 20,130 000000 ffffff}
  124. ${color slate grey}Load: ${color }$loadavg
  125. ${color slate grey}Processes: ${color }$processes
  126. ${color slate grey}Running:   ${color }$running_processes
  127.  
  128. ${color slate grey}Highest CPU:
  129. ${color #ddaa00} ${top name 1}${top_mem cpu 1}
  130. ${color lightgrey} ${top name 2}${top cpu 2}
  131. ${color lightgrey} ${top name 3}${top cpu 3}
  132. ${color lightgrey} ${top name 4}${top cpu 4}
  133.  
  134. ${color slate grey}Highest MEM:
  135. ${color #ddaa00} ${top_mem name 1}${top_mem mem 1}
  136. ${color lightgrey} ${top_mem name 2}${top_mem mem 2}
  137. ${color lightgrey} ${top_mem name 3}${top_mem mem 3}
  138. ${color lightgrey} ${top_mem name 4}${top_mem mem 4}
  139.  
  140. ${color slate grey}MEM:  ${color } $memperc% $mem/$memmax
  141. ${membar 3,130}
  142. ${color slate grey}SWAP: ${color }$swapperc% $swap/$swapmax
  143. ${swapbar 3,130}
  144.  
  145. ${color slate grey}ROOT:    ${color }${fs_free /}/${fs_size /}
  146. ${fs_bar 3,130 /}
  147. ${color slate grey}HOME:  ${color }${fs_free /home}/${fs_size /home}
  148. ${fs_bar 3,130 /home}
  149. # ${color slate grey}SLACK:  ${color }${fs_free /mnt/slack}/${fs_size /mnt/slack}
  150. # ${fs_bar 3,100 /mnt/slack}
  151. ${color slate grey}NET:
  152. ${color}Up: ${color }${upspeed eth0} k/s
  153. ${upspeedgraph eth0 20,130 000000 ffffff}
  154. ${color}Down: ${color }${downspeed eth0}k/s${color}
  155. ${downspeedgraph eth0 20,130 000000 ffffff}
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165. # ${color slate grey}/var/log/messages:
  166. # ${color}${exec tail -n20 /var/log/messages}
  167.  
  168. # ${#exec feh --bg-scale 'dcop kdesktop KBackgroundIface currentWallpaper 1'}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement