Advertisement
uriel1998

updated conkybar

Feb 10th, 2012
955
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.47 KB | None | 0 0
  1. #avoid flicker
  2. double_buffer yes
  3.  
  4. #own window to run simultanious 2 or more conkys
  5. own_window  yes
  6. own_window_transparent no
  7. #next two values sets real transparency!!!!
  8. #tends to use up a bit of CPU usage, though.
  9. #own_window_argb_visual yes
  10. #own_window_argb_value 175
  11. #own_window_type normal
  12. #own_window_type panel
  13. own_window_type desktop
  14. #own_window_type dock
  15. own_window_hints undecorate,sticky,skip_taskbar,skip_pager
  16.  
  17. net_avg_samples 5
  18. cpu_avg_samples 5
  19.  
  20. #borders
  21. draw_borders no
  22. border_width 1
  23.  
  24. #shades
  25. draw_shades no
  26. draw_outline no
  27.  
  28. #position
  29. gap_x 0
  30. gap_y 0
  31. alignment top_left
  32.  
  33. #behaviour
  34. update_interval 5
  35. update_interval_on_battery 10
  36.  
  37. #colour
  38. default_color  8f8f8f
  39. #default_shade_color 000000
  40. own_window_colour 000000
  41.  
  42. #font
  43. use_xft yes
  44. xftfont DejaVu Sans:size=8
  45.  
  46. # Force UTF8? note that UTF8 support required XFT
  47. #override_utf8_locale yes
  48.  
  49. #to prevent window from moving
  50. #use_spacer right
  51. minimum_size 1273
  52. if_up_strictness address
  53.  
  54. # See http://ideatrash.net/2012/02/why-you-use-load-instead-of-cpu-usage.html
  55. # for how to use iowait
  56. # basically put the next line in a bash script
  57. # iostat -c -k -z | tail -2 | head -1 | awk '{print $4}'
  58.  
  59. #/tmp/netup is from here - http://pastebin.com/HW5Mpnsi
  60.  
  61. TEXT
  62. ${color LightGray}${font}GET EXCITED AND MAKE STUFF $color|${color LightGray} ${desktop_name} $color|  ${font StyleBats:size=9}a$font ${color LightGray}${cpu cpu0}%$color | ${font StyleBats:size=9}4$font ${color LightGray}$memperc%$color | ${font StyleBats:size=9}i$font ${color LightGray}${exec /home/scripts/iowait}%$color | ${font StyleBats:size=9}b$font ${color LightGray}${acpitemp}$color | Up: ${color LightGray}${uptime_short}${color} |${color LightGray} ${loadavg} $color|  $alignr $color${if_up wlan0}| ${color LightGray}${wireless_essid wlan0}$color::${color e0e0e0}${wireless_link_qual wlan0}${color}${endif}|${font StyleBats:size=9}h$font ${color e0e0e0}${gw_iface} ${color} ${if_up eth0}| ${font StyleBats:size=9}5$font ${color e0e0e0}${upspeed eth0}${color}/${color e0e0e0}${downspeed eth0} ${endif}${color}${if_up wlan0}| ${font StyleBats:size=9}5$font ${color e0e0e0}${upspeed wlan0}${color} / ${color e0e0e0}${downspeed wlan0}${color}|${endif} ${if_up eth0}${font StyleBats:size=9}p$font ${color LightGray}${addr eth0}$color${endif}${if_up wlan0}${font StyleBats:size=9}o$font ${color LightGray}${addr wlan0}$color ${endif}|${if_gw} ${font StyleBats:size=9}x ${font sans:size=8}${color LightGray}${tail /tmp/netup 1} $color ${endif}|
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement