Advertisement
JeSuisNerd

.conkyrc

Apr 20th, 2012
1,162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. # UBUNTU-CONKY
  2. # A comprehensive conky script, configured for use on
  3. # Ubuntu / Debian Gnome, without the need for any external scripts.
  4. #
  5. # Based on conky-jc and the default .conkyrc.
  6. # INCLUDES:
  7. # - tail of /var/log/messages
  8. # - netstat connections to your computer
  9. #
  10. # -- Pengo (conky@pengo.us)
  11. #
  12.  
  13. # set to yes if you want Conky to be forked in the background
  14. background yes
  15.  
  16. # Create own window instead of using desktop (required in nautilus)
  17. own_window yes
  18. own_window_class Conky
  19. own_window_type desktop
  20. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  21. own_window_colour brown
  22. own_window_transparent yes
  23. own_window_argb_value 0
  24. own_window_argb_visual yes
  25.  
  26. # fiddle with window
  27. use_spacer none
  28. use_xft yes
  29. xftfont Bitstream Vera Sans Mono:size=8
  30. xftalpha 0.9
  31.  
  32. # Update interval in seconds
  33. update_interval 1.0
  34.  
  35. # Minimum size of text area
  36. minimum_size 290 900
  37.  
  38. # Draw shades?
  39. draw_shades yes
  40.  
  41. # Text stuff
  42. draw_outline no # amplifies text if yes
  43. draw_borders no
  44. uppercase no # set to yes if you want all text to be in uppercase
  45. font Bitstream Vera Sans Mono:size=11
  46.  
  47. # Stippled borders?
  48. #stippled_borders 3
  49.  
  50. # border margins
  51. #border_margin 0
  52.  
  53. # border width
  54. #border_width 0
  55.  
  56. # Default colors and also border colors, grey90 == #e5e5e5
  57. default_color #348a8f
  58.  
  59.  
  60. # Text alignment, other possible values are commented
  61. alignment top_left
  62. #alignment top_right
  63. #alignment bottom_left
  64. #alignment bottom_right
  65.  
  66. # Gap between borders of screen and text
  67. gap_x 1600
  68. gap_y 30
  69.  
  70. # Use double buffering (reduces flicker, may not work for everyone)
  71. double_buffer yes
  72.  
  73. # stuff after 'TEXT' will be formatted on screen
  74.  
  75. lua_load ~/scripts/conky_widgets.lua
  76. lua_draw_hook_pre widgets
  77.  
  78. TEXT
  79. ${voffset 10}${offset 40}${color #7365BC}|${color #348a8f}$nodename: ${color #a49a30}$kernel
  80. ${offset 40}${color #348a8f}${color #7365BC}|${color #348a8f}Uptime: ${color #a49a30}$uptime
  81. ${voffset 54}${offset 99}${color #348a8f}${font ubuntu:size=16}CPU${font}
  82. ${voffset -2}${offset 99}${font Bitstream Vera Sans Mono:size=9}${freq}MHz ${execi 15 sensors | grep -A 1 'temp1' | head --lines 1 | cut -c 16-22}${font}
  83. ${voffset 4}${offset 99}${font Bitstream Vera Sans Mono:size=8}${color #7365BC}7${color #942a36}6${color #b55511}5${color #a49a30}4${color #32a445}3${color #348a8f}2${color #34678F}1${color #7365BC}0${font}
  84. ${voffset 79}${offset 113}${font Bitstream Vera Sans Mono:size=9}${color #7365BC}$memperc% of $memmax
  85. ${voffset 6}${offset 161}${color #348a8f}${font ubuntu:size=14}RAM${font}
  86. ${voffset 22}${offset 92}${font Bitstream Vera Sans Mono:size=6}${color #32a445}root
  87. ${offset 92}${color #a49a30}Speedy
  88. ${offset 92}${color #7365BC}/home${font}
  89. ${voffset 17}${offset 70}${color #348a8f}${font ubuntu:size=14}HDD${font}
  90. ${voffset 74}${offset 92}${font Bitstream Vera Sans Mono:size=9}${color #7365BC}${execi 60 ~/scripts/baddery.sh}
  91. ${voffset 2}${offset 151}${color #348a8f}${font ubuntu:size=14}Battery${font}
  92. ${voffset 55}${offset 36}${color #7365BC}${font ubuntu:size=14}Network
  93. ${voffset -12}${offset 36}${font Bitstream Vera Sans Mono:size=8}${execi 600 /home/egon/scripts/getip.sh}${font}
  94. ${voffset 0}${offset 40}${font Bitstream Vera Sans Mono:size=8}${color #348a8f}eth0 ${color #a49a30}wlan0${font}
  95. ${voffset -11}${offset 40}${font Bitstream Vera Sans Mono:size=7}${color #348a8f}up down ${color #a49a30}up down${font}
  96. ${voffset 152}${offset 38}${font Bitstream Vera Sans Mono:size=7}${color #348a8f}${upspeedf eth0}k
  97. ${voffset -13}${offset 82}${color #348a8f}${downspeedf eth0}k
  98. ${voffset -13}${offset 154}${color #a49a30}${upspeedf wlan0}k
  99. ${voffset -13}${offset 198}${downspeedf wlan0}k${font}
  100. ${color #a49a30}${offset 110}TODO:
  101. ${font Bitstream Vera Sans Mono:size=8}${execpi 60 todo.sh -d ~/.todo/config-conky ls | head --lines=-2 | fold -s -w47}${font}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement