Advertisement
Guest User

Untitled

a guest
Mar 24th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. # set to yes if you want Conky to be forked in the background
  2. background no
  3.  
  4. # Use Xft?
  5. use_xft yes
  6.  
  7. # Set conky on the bottom of all other applications
  8. on_bottom no
  9.  
  10. # Xft font when Xft is enabled
  11. xftfont DejaVu Sans:size=11
  12.  
  13. # Text alpha when using Xft
  14. xftalpha 1
  15.  
  16. # Window dimensions
  17. maximum_width 0
  18.  
  19. # Update interval in seconds
  20. update_interval 2.0
  21.  
  22. # This is the number of times Conky will update before quitting.
  23. # Set to zero to run forever.
  24. total_run_times 0
  25.  
  26. # Create own window instead of using desktop (required in nautilus)
  27. own_window yes
  28.  
  29. # Use pseudo transparency with own_window?
  30. own_window_transparent yes
  31.  
  32. # Type of the window (it can be override, desktop or root)
  33. own_window_type root
  34.  
  35. # If own_window_transparent is set to no, you can set the background colour here
  36. own_window_colour black
  37.  
  38. # Other window options
  39. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  40.  
  41. # Use double buffering (reduces flicker, may not work for everyone)
  42. double_buffer yes
  43.  
  44. # Minimum size of text area
  45. minimum_size 1440 10
  46.  
  47. # Draw shades?
  48. draw_shades yes
  49.  
  50. # Draw outlines?
  51. draw_outline no
  52.  
  53. # Draw borders around text
  54. draw_borders no
  55.  
  56. # Draw borders around graph
  57. draw_graph_borders yes
  58.  
  59. # Stippled borders?
  60. # stippled_borders 8
  61.  
  62. # border margins
  63. border_margin 0
  64.  
  65. # border width
  66. border_width 0
  67.  
  68. # Default colors and also border colors
  69. default_color white
  70. #default_shade_color 434344
  71. default_shade_color black
  72. default_outline_color 434344
  73.  
  74. # Text alignment, other possible values are commented
  75. alignment top_middle
  76. #alignment top_right
  77. #alignment bottom_left
  78. #alignment bottom_right
  79. #alignment none
  80.  
  81. # Gap between borders of screen and text
  82. # same thing as passing -x at command line
  83. gap_x 0
  84. gap_y 4
  85.  
  86. # Subtract file system buffers from used memory?
  87. no_buffers yes
  88.  
  89. # set to yes if you want all text to be in uppercase
  90. uppercase no
  91.  
  92. # number of cpu samples to average
  93. # set to 1 to disable averaging
  94. cpu_avg_samples 2
  95.  
  96. # number of net samples to average
  97. # set to 1 to disable averaging
  98. net_avg_samples 2
  99.  
  100. # Force UTF8? note that UTF8 support required XFT
  101. override_utf8_locale no
  102.  
  103.  
  104. # Add spaces to keep things from moving about? This only affects certain objects.
  105. use_spacer none
  106.  
  107. # mldonkey_hostname Hostname for mldonkey stuff, defaults to localhost
  108. # mldonkey_port Mldonkey port, 4001 default
  109. # mldonkey_login Mldonkey login, default none
  110. # mldonkey_password Mldonkey password, default none
  111.  
  112. # boinc (seti) dir
  113. # seti_dir /opt/seti
  114.  
  115. # Allow for the creation of at least this number of port monitors (if 0 or not set, default is 16)
  116. #min_port_monitors 16
  117.  
  118. # Allow each port monitor to track at least this many connections (if 0 or not set, default is 256)
  119. #min_port_monitor_connections 256
  120.  
  121. # variable is given either in format $variable or in ${variable}. Latter
  122. # allows characters right after the variable and must be used in network
  123. # stuff because of an argument
  124.  
  125. # stuff after 'TEXT' will be formatted on screen
  126.  
  127. TEXT
  128. ${alignc}${color grey}Linux${color} ${kernel} ${color grey}| CPU${color} ${cpu cpu1}% ${execi 10 sensors | grep -i core1 | cut -c 16-17}C - ${cpu cpu2}% ${execi 10 sensors | grep -i core0 | cut -c 16-17}C ${color grey}| MEM${color} ${memperc}% - ${swapperc}% ${color grey}| Disk I/O${color} ${diskio} ${execi 10 hddtemp /dev/sda | cut -c 28-29}C ${color grey}| Red${color} ${downspeed wlan0} ${color grey}| nVidia ${color} ${execi 10 nvidia-settings -q GPUCurrentClockFreqsString | grep Attr | cut -c 62-64}Mhz ${execi 10 nvidia-settings -q GPUCoreTemp | grep Attr | cut -c 39-40}C
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement