Advertisement
Guest User

.conkyrc

a guest
Jul 18th, 2016
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.99 KB | None | 0 0
  1. conky.config = {
  2. --set to = true if you want Conky to be forked in the background
  3. background = true,
  4.  
  5. own_window = true,
  6. own_window_type = 'normal',
  7. own_window_transparent = true,
  8. own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  9. out_to_console = false,
  10. use_xft = true,
  11. font = 'Ubuntu mono:size=11:antialias=true',
  12. update_interval = 3,
  13.  
  14. --Create own window instead of using desktop (required in nautilus)
  15. own_window = true,
  16.  
  17. --Use double buffering (reduces flicker, may not work for everyone)
  18. double_buffer = true,
  19. maximum_width = 320,
  20.  
  21. draw_shades = false,
  22.  
  23. --Draw outlines?
  24. draw_outline = false,
  25.  
  26. --Draw borders around text
  27. draw_borders = false,
  28.  
  29. --Stippled borders?
  30. stippled_borders = 1,
  31.  
  32. --border width
  33. border_width = 20,
  34.  
  35. --Default colors and also border colors
  36. default_color = 'white',
  37. default_shade_color = 'white',
  38. default_outline_color = 'white',
  39.  
  40. --Text alignment, other possible values are commented
  41. alignment = 'top_right',
  42.  
  43. --Gap between borders of screen and text
  44. gap_x = 20,
  45. gap_y = 50,
  46.  
  47. --Add spaces to keep things from moving about? This only affects certain objects.
  48. use_spacer = 'left',
  49.  
  50. --Subtract file system buffers from used memory?
  51. no_buffers = true,
  52.  
  53. --set to = true if you want all text to be in uppercase
  54. uppercase = false,
  55. }
  56. conky.text = [[
  57. $alignc${color #55aaff}${font Openlogos:size=30}B$font
  58. $alignc${color #55aaff}${font Audiowide:size=20}$nodename$font
  59.  
  60. ${alignc}$color $kernel on $machine
  61.  
  62. ${color #6495ed}$color$alignc$uptime ${color lightgrey}uptime | $color$loadavg${color lightgrey}
  63.  
  64. ${color #656565}$stippled_hr$color
  65.  
  66. $color${alignc}${addr eno1} | $color${curl http://icanhazip.com 60}
  67. ${color lightgrey}${alignc}down:$color${totaldown eno1} | ${color lightgrey}up:$color${totalup eno1}
  68.  
  69. ${color #656565}$stippled_hr$color
  70.  
  71. ${color #6495ed}${alignc}${color lightgrey}Intel Core i7 5960X @ $color${freq_g} GHz${color lightgrey}
  72.  
  73. ${color lightgrey}1 ${color #6495ed}${cpubar cpu1 6,130}$color $alignr ${color lightgrey}5 ${color #6495ed}${cpubar cpu5 6,130}$color $alignr
  74. ${color lightgrey}2 ${color #6495ed}${cpubar cpu2 6,130}$color $alignr ${color lightgrey}6 ${color #6495ed}${cpubar cpu6 6,130}$color $alignr
  75. ${color lightgrey}3 ${color #6495ed}${cpubar cpu3 6,130}$color $alignr ${color lightgrey}7 ${color #6495ed}${cpubar cpu7 6,130}$color $alignr
  76. ${color lightgrey}4 ${color #6495ed}${cpubar cpu4 6,130}$color $alignr ${color lightgrey}8 ${color #6495ed}${cpubar cpu8 6,130}$color $alignr
  77. ${color black}${cpugraph 35,320 5000a0 6495ed}${color white}
  78.  
  79. ${color #6495ed}ram ${membar 5,160} ${alignr}$color$memfree free
  80. ${color #6495ed}swap ${swapbar 5,160} ${alignr}$color$swapfree free
  81.  
  82. ${color #6495ed}/ ${fs_bar 5,160 /} ${alignr}$color${fs_free /} free
  83.  
  84. ${color #656565}$stippled_hr$color
  85.  
  86. ${alignc}$color$processes ${color lightgrey}processes $color$running_processes${color lightgrey} running
  87.  
  88. ${color}by cpu usage mem cpu% ${alignr}user
  89. ${color #55aaff} ${top name 1} ${top mem_res 1} ${top cpu 1} $alignr ${top user 1}
  90. ${color lightgrey} ${top name 2} ${top mem_res 2} ${top cpu 2} $alignr ${top user 2}
  91. ${color lightgrey} ${top name 3} ${top mem_res 3} ${top cpu 3} $alignr ${top user 3}
  92. ${color lightgrey} ${top name 4} ${top mem_res 4} ${top cpu 4} $alignr ${top user 4}
  93.  
  94. ${color}by mem usage mem cpu% ${alignr}user
  95. ${color #55aaff} ${top_mem name 1} ${top_mem mem_res 1} ${top_mem cpu 1} $alignr ${top_mem user 1}
  96. ${color lightgrey} ${top_mem name 2} ${top_mem mem_res 2} ${top_mem cpu 2} $alignr ${top_mem user 2}
  97. ${color lightgrey} ${top_mem name 3} ${top_mem mem_res 3} ${top_mem cpu 3} $alignr ${top_mem user 3}
  98. ${color lightgrey} ${top_mem name 4} ${top_mem mem_res 4} ${top_mem cpu 4} $alignr ${top_mem user 4}
  99.  
  100. ${color #656565}$stippled_hr$color
  101.  
  102. ${color #6495ed}bbc news
  103. $color${rss http://feeds.bbci.co.uk/news/rss.xml?edition=uk 15 item_titles 6 1}
  104.  
  105. ${color #6495ed}arch
  106. $color${rss https://www.archlinux.org/feeds/news/ 15 item_titles 4 1}
  107.  
  108. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement