Advertisement
ichase

conkyrc_fs

Apr 14th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. # conky configuration
  2. ####
  3. ## Use XFT? Required to Force UTF8 (see below)
  4. #
  5. use_xft yes
  6. xftfont monospace:size=9
  7. xftalpha 0.1
  8.  
  9. ####
  10. ## Force UTF8? Requires XFT (see above)
  11. ## Displays degree symbol, instead of °, etc.
  12. #
  13. override_utf8_locale yes
  14.  
  15. ####
  16. ## This buffer is used for text, single lines, output from $exec, and other variables.
  17. ## Increasing the text buffer size (too high) will drastically reduce Conky's performance.
  18. ## Decreasing the size (too low) will truncate content and cause strange display output.
  19. ## Standard text buffer size is 256 bytes (cannot be less). Adjust YOUR buffer wisely!
  20. #
  21. text_buffer_size 640
  22.  
  23. ####
  24. ## Daemonize Conky, aka 'fork to background'.
  25. #
  26. background no
  27.  
  28. ####
  29. ## Update interval in seconds.
  30. #
  31. update_interval 3.0
  32.  
  33. ####
  34. ## The number of times Conky will update before quitting.
  35. ## Zero makes Conky run forever.
  36. #
  37. total_run_times 0
  38.  
  39. ####
  40. ## Create own window instead of using desktop?
  41. #
  42. own_window yes
  43. own_window_type override
  44. own_window_transparent yes
  45.  
  46. ####
  47. ## Force images to redraw when they change.
  48. #
  49. imlib_cache_size 0
  50.  
  51. ####
  52. ## Use double buffering? Reduces flicker.
  53. #
  54. double_buffer yes
  55.  
  56. ####
  57. ## Draw shades?
  58. #
  59. draw_shades no
  60.  
  61. ####
  62. ## Draw outlines?
  63. #
  64. draw_outline no
  65.  
  66. ####
  67. ## Draw borders around text?
  68. #
  69. draw_borders no
  70.  
  71. ####
  72. ## Draw borders around graphs?
  73. #
  74. draw_graph_borders yes
  75.  
  76. ####
  77. ## Print text to stdout?
  78. ## Print text in console?
  79. #
  80. out_to_ncurses no
  81. out_to_console no
  82.  
  83. ####
  84. ## Text alignment.
  85. #
  86. #alignment top_left
  87. #alignment top_right
  88. alignment bottom_left
  89. #alignment bottom_right
  90.  
  91. ####
  92. ## Minimum and maximum size of text area.
  93. #
  94. minimum_size 1020 0
  95. maximum_width 1020
  96.  
  97. ####
  98. ## Gap between text and screen borders.
  99. #
  100. gap_x -5 ## Left / Right
  101. gap_y 20
  102. ## Top / Bottom
  103.  
  104. ####
  105. ## Shorten MiB/GiB to M/G in stats.
  106. #
  107. short_units no
  108.  
  109. ####
  110. ## Pad % symbol spacing after numbers.
  111. #
  112. pad_percents 0
  113.  
  114. ####
  115. ## Pad spacing between text and borders.
  116. #
  117. border_inner_margin 4
  118.  
  119. ####
  120. ## Limit the length of names in "Top Processes".
  121. #
  122. top_name_width 15
  123.  
  124. ####
  125. ## Subtract file system -/+buffers/cache from used memory?
  126. ## Set to yes, to produce meaningful physical memory stats.
  127. #
  128. no_buffers yes
  129.  
  130. ####
  131. ## Set to yes, if you want all text to be in UPPERCASE.
  132. #
  133. uppercase no
  134.  
  135. ####
  136. ## Number of cpu samples to average.
  137. ## Set to 1 to disable averaging.
  138. #
  139. cpu_avg_samples 2
  140.  
  141. ####
  142. ## Number of net samples to average.
  143. ## Set to 1 to disable averaging.
  144. #
  145. net_avg_samples 2
  146.  
  147. ####
  148. ## Add spaces to keep things from moving around?
  149. ## Only affects certain objects.
  150. #
  151. use_spacer right
  152.  
  153. # Colors
  154. #default_color B15100
  155. #default_color 51010F
  156. #default_color 86b5ea
  157. default_color 64A0FF
  158. #default_color red
  159. #default_color firebrick
  160. #default_color green
  161. #default_color blue
  162. #default_color deeppink
  163. #default_color yellow
  164. #default_color darkslateblue
  165. #default_color darkviolet
  166. color0 red
  167.  
  168. #####
  169. ## Load Lua for shading (optional)
  170. ## Set the path to your script here.
  171. #
  172. lua_load ~/draw_bg_fs.lua
  173. lua_draw_hook_pre draw_bg
  174.  
  175. ####
  176. ## Load Lua for bargraphs (required)
  177. ## Set the path to your script here.
  178. #
  179. lua_load ~/bargraph_small_fs.lua
  180. lua_draw_hook_post main_bars
  181.  
  182. TEXT
  183. ${offset 36}${font Radio Space:bold:size=10}${color}/${offset 70}${color0}${fs_used /}${color} / ${fs_size /}${offset 30}${color}Server${offset 18}${color0}${fs_used /mnt/server}${color} / ${fs_size /mnt/server}${offset 32}${color}External${offset 15}${color0}${fs_used /mnt/External}${color}/ ${fs_size /mnt/External}${offset 36}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement