Advertisement
Guest User

Conky for October

a guest
Oct 2nd, 2014
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.50 KB | None | 0 0
  1. # Conky
  2. ## easysid Tuesday, 30 September 2014 16:44 IST
  3. #
  4. ######################
  5. # - Conky settings - #
  6. ######################
  7.  
  8. background no
  9. update_interval 2
  10. cpu_avg_samples 1
  11. total_run_times 0
  12. override_utf8_locale yes
  13.  
  14. double_buffer yes
  15. no_buffers yes
  16.  
  17. text_buffer_size 10240
  18. imlib_cache_size 10240
  19.  
  20. # For screen size 1366x768
  21. minimum_size 930 100
  22. maximum_width 930
  23.  
  24. gap_x 200
  25. gap_y 5
  26. alignment bl
  27. #####################
  28. # - Text settings - #
  29. #####################
  30. use_xft yes
  31. xftfont dejavu sans mono:pixelsize=11  # changing font may mess with alignment.
  32. xftalpha 1
  33.  
  34. short_units yes
  35. pad_percents 2
  36. top_name_width 9
  37. uppercase no
  38.  
  39.  
  40. ######################
  41. # - Color settings - #
  42. ######################
  43.  
  44. default_color cccccc # Text
  45.  
  46. #############################
  47. # - Window specifications - #
  48. #############################
  49. own_window yes
  50. own_window_colour 101010
  51. own_window_argb_visual yes
  52. own_window_transparent yes
  53. own_window_type desktop
  54. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  55.  
  56. border_inner_margin 0
  57. border_outer_margin 0
  58.  
  59. #########################
  60. # - Graphics settings - #
  61. #########################
  62. draw_shades no
  63. draw_outline no
  64. draw_borders no
  65. stippled_borders 0
  66. draw_graph_borders yes
  67.  
  68. template1 ⎜${offset -4}${voffset 6}──${voffset -6}
  69.  
  70. # The conky is written one line at a time. Each para below corresponds to a single line in display.
  71.  
  72. TEXT
  73. ${goto 375}${sysname} @ ${nodename}
  74. ${goto 420}${voffset -1}
  75. ${voffset -6}${goto 3}──────────────────────────────────────────────────────────────────────────────────────────────────────────
  76. ${voffset -6}\
  77. ${goto 180}${goto 420}${goto 645}${goto 742}${voffset -5}
  78. ${template1}kernel ${kernel} ${goto 180}${template1}cpu ${cpu cpu0}% ${goto 420}${template1}ram ${mem} \
  79.         ${goto 645}${template1}temps ${goto 742}${template1}disks \
  80.  
  81. ${template1}uptime ${uptime_short} \
  82. ${goto 180}  ${template1}${top name 1} ${goto 300}${top pid 1} ${goto 340}${top cpu 1}% \
  83. ${goto 420}  ${template1}${top_mem name 1} ${goto 540}${top_mem pid 1} ${goto 590}${top_mem mem_res 1} \
  84. ${goto 645}  ${template1}cpu ${execi 3 sensors coretemp-isa-000 | grep 'Core 0' | cut -c16-17}° \
  85. ${goto 742}  ${template1}/     ${fs_used /} of ${fs_size /} \
  86.  
  87. ${template1}pacman ${execi 1000 pacman -Q | wc -l} packages \
  88. ${goto 180}  ${template1}${top name 2} ${goto 300}${top pid 2} ${goto 340}${top cpu 2}% \
  89. ${goto 420}  ${template1}${top_mem name 2} ${goto 540}${top_mem pid 2} ${goto 590}${top_mem mem_res 2} \
  90. ${goto 645}  ${template1}ati ${execi 3 sensors radeon-pci-0100 | grep temp1 | cut -c16-17}° \
  91. ${goto 742}  ${template1}/home ${fs_used /home} of ${fs_size /home} \
  92.  
  93.   ${template1}updated ${execi 1000 awk '/upgraded/ {line=$0;} END { $0=line; gsub(/[\[\]]/,"",$0); printf "%s",$1;}' /var/log/pacman.log} \
  94. ${goto 180}  ${template1}${top name 3} ${goto 300}${top pid 3} ${goto 340}${top cpu 3}% \
  95. ${goto 420}  ${template1}${top_mem name 3} ${goto 540}${top_mem pid 3} ${goto 590}${top_mem mem_res 3} \
  96. ${goto 742}  ${template1}/DATA ${fs_used /media/DATA} of ${fs_size /media/DATA} \
  97.  
  98. ${goto 180}  ${template1}${top name 4} ${goto 300}${top pid 4} ${goto 340}${top cpu 4}% \
  99. ${goto 420}  ${template1}${top_mem name 4} ${goto 540}${top_mem pid 4} ${goto 590}${top_mem mem_res 4}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement