Advertisement
mazonnaa

Current Conky Setup

Aug 15th, 2013
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. # Use Xft?
  2. use_xft yes
  3. xftfont DejaVu Sans:size=8
  4. xftalpha 0.8
  5. text_buffer_size 2048
  6.  
  7. update_interval 2
  8.  
  9. total_run_times 0
  10.  
  11. own_window yes
  12. own_window_transparent yes
  13. own_window_type normal
  14. own_window_argb_visual yes
  15. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  16.  
  17. double_buffer yes
  18.  
  19. minimum_size 180 0
  20. maximum_width 220
  21.  
  22. draw_shades no
  23.  
  24. draw_outline no
  25.  
  26. draw_borders no
  27.  
  28. stippled_borders 0
  29.  
  30. border_margin 5
  31.  
  32. border_width 1
  33.  
  34. draw_graph_borders yes
  35.  
  36. # Default colors and also border colors
  37. default_color F5F5F5
  38. default_shade_color red
  39. default_outline_color F5F5F5
  40. own_window_colour white
  41.  
  42. alignment top_right
  43.  
  44. # Gap between borders of screen and text
  45. # same thing as passing -x at command line
  46. gap_x 12
  47. gap_y 48
  48.  
  49. no_buffers yes
  50.  
  51. uppercase no
  52.  
  53. cpu_avg_samples 2
  54.  
  55. # Nvidia Temp display Code: ${execi 30 nvclock -T | awk '/temperature/ {print $4}'}
  56. # Nvidia Temp display To cut the C add | cut -d "C" -f1 Ex.${execi 30 nvclock -T | awk '/temperature/ {print $4}'| cut -d "C" -f1
  57.  
  58. net_avg_samples 2
  59.  
  60. # Force UTF8? note that UTF8 support required XFT
  61. override_utf8_locale yes
  62.  
  63. # Add spaces to keep things from moving about? This only affects certain objects.
  64. use_spacer none
  65.  
  66. TEXT
  67. ##############
  68. # - SYSTEM - #
  69. ##############
  70. ${color 99FF99}${font Verdana:style=Italic:size=9}System${color} ${hr}${font}
  71. $sysname $kernel on $machine
  72. Hostname $alignr $nodename
  73. Processor Use $alignr ${cpu cpu}% Temp:${color DDDDFD}${acpitemp}F${color}
  74. ${cpugraph cpu0 18,220 30B4F3 D40D4D}
  75. Swap $alignc$swap /swap $swapmax $alignr $swapperc%
  76. Uptime $alignr$uptime
  77. Battery $alignr$battery_percent%
  78. # |--MEM
  79. Ram $alignc $mem / $memmax $alignr $memperc%
  80. ${color C24DDD}${membar}${color}
  81. #############
  82. # - CLOCK - #
  83. #############
  84. ${color 99FF99}${font Verdana:style=Italic:size=9}Date and Time${color} ${hr}
  85. ${color DDDDFD}${alignc}${font Verdana:style=Bold Italic:size:24}${time %I:%M}
  86. ${font Verdana:style=Italic:size=9}${alignc}${Time %A %B %d %Y}
  87. ${color 99FF99}${font Verdana:style=Italic:size=9}Processes${color} ${hr}${font}
  88. $processes processes ($running_processes running)
  89. NAME $alignr PID CPU MEM
  90. ${top name 1} $alignr ${top pid 1} ${top cpu 1} ${top mem 1}
  91. ${top name 2} $alignr ${top pid 2} ${top cpu 2} ${top mem 2}
  92. ${top name 3} $alignr ${top pid 3} ${top cpu 3} ${top mem 3}
  93. ${top name 4} $alignr ${top pid 4} ${top cpu 4} ${top mem 4}
  94. ${top name 5} $alignr ${top pid 5} ${top cpu 5} ${top mem 5}
  95. ##########
  96. # - HD - #
  97. ##########
  98. ${color 99FF99}${font Verdana:style=Italic:size=9}HDD${color} ${hr}${font}
  99. Root $alignc ${fs_used /} / ${fs_size /} $alignr ${fs_free_perc /}%
  100. ${color D40D4D}${fs_bar /}${color}
  101. Home $alignc ${fs_used /home} / ${fs_size /home} $alignr ${fs_free_perc /home}%
  102. ${color 3077F3}${fs_bar /home}${color}
  103. ###############
  104. # - NETWORK - #
  105. ###############
  106. ${color 99FF99}${font Verdana:style=Italic:size=9}Network${color} ${hr}${font}
  107. Inbound $alignr ${color DDDDFD}${downspeed eth1} kb/s ${color}
  108. ${downspeedgraph eth1 22,220 30B4F3 D40D4D}
  109. Outbound $alignr ${color DDDDFD}${upspeed eth1} kb/s ${color}
  110. ${upspeedgraph eth1 22,220 30B4F3 D40D4D}
  111. Wireless signal: $alignr ${wireless_link_qual eth1}%
  112. IP address: $alignr ${addr eth1}
  113. Wifi Hostname: $alignr ${wireless_essid eth1}
  114. ${color 99FF99}${font Verdana:style=Italic:size=9}Weather${color} ${hr}${font}
  115. LOCATION:${alignr}${execi 600 conkyForecast --location=XXXXXXXX --datatype=CN}
  116. CURRENT CONDITION:${alignr}${execi 600 conkyForecast --location=XXXXXXXX --datatype=CC}
  117. FEELS LIKE:${alignr}${execi 600 conkyForecast --location=XXXXXXXX --datatype=LT}
  118. CHANCE OF PRECIP: ${alignr}${execi 600 conkyForecast --location=XXXXXXXX --startday=0 --datatype=PC}
  119. HUMIDITY: ${alignr}${execi 600 conkyForecast --location=XXXXXXXX --datatype=HM}
  120. WIND: ${alignr}${execi 600 conkyForecast --location=XXXXXXXX --datatype=WS } - ${execi 600 conkyForecast --location=XXXXXXXX --datatype=WD}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement