kellex

conky conf1

Apr 19th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.22 KB | None | 0 0
  1. ####
  2. ## starting from scratch
  3. #  Conky config file .2conkyrc
  4. #  by Grae
  5. ##
  6.  
  7. ####
  8. ## begin setup config
  9. #  general startup settings
  10.  
  11. background yes
  12. update_interval 2.0
  13. text_buffer_size 1024
  14. total_run_times 0
  15.  
  16. ## screen setup:
  17. #  placement, sizing, font and color info
  18.  
  19. alignment top_left
  20. gap_x 130
  21. gap_y 35
  22. minimum_size 220 0
  23. maximum_width 1850
  24. own_window yes
  25. own_window_hints below,skip_pager,skip_taskbar,undecorated,sticky
  26. # transparency:
  27. own_window_argb_visual yes
  28. own_window_argb_value 0
  29. # font defaults:
  30. use_xft yes
  31. xftfont DroidSans:size=8
  32. xftalpha 0.9
  33. override_utf8_locale yes
  34.  
  35. ## NOTE: Other fonts can be called up during the TEXT formatting
  36. #  these fonts are found through the normal path, or ~/.fonts
  37. #  OpenLogos
  38.  
  39. ## images, buffering, shading
  40. imlib_cache_size 60
  41. double_buffer yes
  42. draw_shades yes
  43. default_shade_color 777777
  44.  
  45. ## misc text formatting
  46. short_units yes
  47. pad_percents 0
  48. border_inner_margin 0
  49. uppercase no
  50. use_spacer right
  51.  
  52. ## outlines and borders
  53. draw_outline no
  54. draw_borders no
  55. draw_graph_borders no
  56. border_width 0
  57.  
  58. ## stdout/console printing
  59. out_to_ncurses no
  60. out_to_console no
  61.  
  62. ## process settings
  63. top_name_width 5
  64. #no_buffers yes
  65.  
  66. #### end config
  67.  
  68. #### Begin display information
  69. ## everything below 'TEXT' is drawn on screen
  70.  
  71. TEXT
  72. ${color white}UpTime: ${color black}$uptime \
  73. ${color white}Kern: ${color black}$kernel \
  74. ${color white}Load: ${color black}$loadavg \
  75. ${color white}Processes: ${color black}$processes \
  76. ${color white}Running: ${color black}$running_processes \
  77. ${color white}Highest CPU: \
  78. ${color black}${top name 1}${top_mem cpu 1} ${color black} \
  79. ${color white}Highest MEM: \
  80. ${color black}${top_mem name 1}${top_mem mem 1} ${color black} \
  81. ${color white}MEM: ${color black} $memperc% $mem/$memmax \
  82. ${color white}SWAP: ${color black}$swapperc% $swap/$swapmax \
  83. ${color white}ROOT: ${color black}${fs_free /}/${fs_size /} \
  84. ${color white}HOME: ${color black}${fs_free /home}/${fs_size /home} \
  85. ${color white}HDD: ${color black}${fs_free /media/5488D87039562188}/${fs_size /media/5488D87039562188} \
  86. ${color white}NET: \
  87. ${color white}Up: ${color black}${upspeed eth0} k/s \
  88. ${color white}Down: ${color black}${downspeed eth0}k/s${color}
Advertisement
Add Comment
Please, Sign In to add comment