Advertisement
Guest User

.conkyrc

a guest
Jul 15th, 2013
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.06 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont Trebuchet MS:size=8
  4. xftalpha 0.8
  5. text_buffer_size 2048
  6.  
  7. # Update interval in seconds
  8. update_interval 2
  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.  
  21. # Use double buffering (reduces flicker, may not work for everyone)
  22. double_buffer yes
  23.  
  24. # Minimum size of text area
  25. minimum_size 180 0
  26.  
  27. # Draw shades?
  28. draw_shades no
  29.  
  30. # Draw outlines?
  31. draw_outline no
  32.  
  33. # Draw borders around text
  34. draw_borders no
  35.  
  36. # Stippled borders?
  37. stippled_borders 0
  38.  
  39. # border margins
  40. border_margin 5
  41.  
  42. # border width
  43. border_width 1
  44.  
  45. # Default colors and also border colors
  46. default_color black
  47. own_window_colour white
  48.  
  49. # Text alignment, other possible values are commented
  50. alignment top_right
  51.  
  52. # Gap between borders of screen and text
  53. # same thing as passing -x at command line
  54. gap_x 35
  55. gap_y 50
  56.  
  57. # Subtract file system buffers from used memory?
  58. no_buffers yes
  59.  
  60. # set to yes if you want all text to be in uppercase
  61. uppercase no
  62.  
  63. # number of cpu samples to average
  64. # set to 1 to disable averaging
  65. cpu_avg_samples 1
  66.  
  67. # number of net samples to average
  68. # set to 1 to disable averaging
  69. net_avg_samples 1
  70.  
  71. # Force UTF8? note that UTF8 support required XFT
  72. override_utf8_locale yes
  73.  
  74. # Add spaces to keep things from moving about?  This only affects
  75. certain objects.
  76. use_spacer none
  77.  
  78. TEXT
  79. SYSTEM ${hr 2}
  80.  
  81. Kernel  $alignr${kernel}
  82. CPU1    $alignr${freq_g cpu0}/${cpu cpu0}%
  83. CPU2    $alignr${freq_g cpu1}/${cpu cpu1}%
  84. CPU3    $alignr${freq_g cpu2}/${cpu cpu2}%
  85. CPU4    $alignr${freq_g cpu3}/${cpu cpu3}%
  86. ${cpugraph cpu}
  87. RAM   : $mem/$memperc% ${alignr}${membar 8,60}
  88. Battery: ${battery_percent BAT0}% ${alignr}${battery_bar 8,60 BAT0}
  89. Time remaining: ${alignr}${battery_time BAT0}
  90. Uptime: ${alignr}${uptime}
  91.  
  92. DATE ${hr 2}
  93.  
  94. ${alignc 35}${font Trebuchet MS:size=26}${time %H:%M}${font}
  95. ${alignc}${time %a %d %b %Y}
  96.  
  97. HD ${hr 2}
  98.  
  99. Home:
  100. ${fs_used /home}/${fs_size /home} ${alignr}${fs_bar 8,60 /home}
  101.  
  102. Root:
  103. ${fs_used /}/${fs_size /} ${alignr}${fs_bar 8,60 /}
  104.  
  105. Swap:
  106. ${swap}/${swapmax} ${alignr}${swapbar 8,60}
  107.  
  108. NETWORK ${hr 2}
  109.  
  110. ip: $alignr${addrs wlp18s0}
  111. Up: $alignr${upspeed wlp18s0}kb/s
  112. ${upspeedgraph wlp18s0}
  113. Down: $alignr${downspeed wlp18s0}kb/s ${alignr}
  114. ${downspeedgraph wlp18s0}
  115. Upload: $alignr${totalup wlp18s0}
  116. Download: $alignr${totaldown wlp18s0}
  117. Signal: ${wireless_link_qual wlp18s0}% ${alignr}${wireless_link_bar 8,60
  118. wlp18s0}
  119.  
  120. Top Processes ${hr 2}
  121.  
  122. ${top_mem name 1}${alignr}${top_mem mem_res 1}${alignr}${top_mem mem 1}%
  123. ${top_mem name 2}${alignr}${top_mem mem_res 2}${alignr}${top_mem mem 2}%
  124. ${top_mem name 3}${alignr}${top_mem mem_res 3}${alignr}${top_mem mem 3}%
  125. ${top_mem name 4}${alignr}${top_mem mem_res 4}${alignr}${top_mem mem 4}%
  126. ${top_mem name 5}${alignr}${top_mem mem_res 5}${alignr}${top_mem mem 5}%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement