Advertisement
kbmonkey

minfo conky config

Jul 2nd, 2011
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. # minfo conky -- for the minimalist!
  2. #
  3. # minimalist conky is a horizontal style config.
  4. # configure your desktop margins so conky is always visible.
  5. #
  6. # made from scratch using the conky wiki as reference.
  7. #
  8. # features:
  9. # * host, kernel, uptime, cpu, ram, network and disk usage, plus top 2 procs.
  10. # * now playing, first todo item
  11. #
  12. # notes:
  13. # * includes examples for now playing via deadbeef and moc
  14. # * todo item from plain text file ~/todo, first two lines sed'd into one
  15. # * see bottom for examples and notes
  16. #
  17. # feel free to tweak :)
  18. #
  19. # ~ kbmonkey
  20. #
  21. # # # # # # # # # # # # # #
  22.  
  23. alignment top_middle
  24. use_xft yes
  25. xftfont Monospace:size=8
  26. xftalpha 1
  27. out_to_console no
  28. update_interval 3
  29. draw_shades no
  30. own_window yes
  31. own_window_type override
  32. own_window_transparent no
  33. double_buffer yes
  34. #own_window_type normal
  35. stippled_borders 1
  36. border_width 1
  37. draw_borders no
  38. gap_x 0
  39. gap_y 0
  40. use_spacer yes
  41.  
  42. # colors
  43. # # # # # # # # # # # # # #
  44. default_color bbbbbb # the border and pipes between outputs
  45. own_window_colour 000000 # background
  46. color1 cccc99 # processing
  47. color2 88cc88 # networking
  48. color3 9999cc # disks
  49. color4 88cccc # top
  50. color7 bb88bb # todo
  51. color8 88aaff # now playing
  52. color9 bbbbbb # infos
  53.  
  54. # [first line] # # # # # # # # # # # # #
  55.  
  56. TEXT
  57. ${color9}$nodename running $kernel for ${uptime} ${color}|${color1} cpu ${cpu}% ${cpubar 10,60} ${color}|${color1} ram ${membar 10,60} ${color}|${color1} swap ${color1}${swapbar 10,60} ${color}| ${color2}downlink ${downspeedgraph ra0 10,60 006600 00ff00 -l} ${downspeed ra0}${color}|${color2} uplink ${upspeedgraph ra0 10,60 006600 00ff00} ${upspeed ra0} ${color}|${color3} / ${fs_free /} ${color}|${color3} /home ${fs_free /home} ${color}|${color3} /data ${fs_free /mnt/data} ${color}|${color4} ${alignr}${color4}${top name 1} ${top cpu 1}% ${color}|${color4} ${top name 2} ${top cpu 2}%
  58. #
  59. #
  60. # [second line] # # # # # # # # # # # # #
  61. ${color8}${if_running deadbeef-main}${exec deadbeef --nowplaying '%t, by %a'}${endif} ${alignc} ${color9} ${alignr} ${color7}${exec cat todo | head -n2 | sed 'N;s/\n/ /;'}
  62. # ${color}${hr}
  63. #
  64. #
  65. #
  66. # [notes]
  67. # # # # # # # # # # # # # #
  68. #
  69. # now playing codes:
  70. # * moc = ${color8}${if_running mocp}${exec mocp -Q %title}${endif}
  71. #
  72. # * deadbeef = ${color8}${if_running deadbeef-main}${exec deadbeef --nowplaying '%t, by %a'}${endif}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement