Advertisement
Guest User

Sample Conky config

a guest
Mar 11th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. # Conky, a system monitor, based on torsmo
  2. #
  3. # Any original torsmo code is licensed under the BSD license
  4. #
  5. # All code written since the fork of torsmo is licensed under the GPL
  6. #
  7. # Please see COPYING for details
  8. #
  9. # Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
  10. # Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
  11. # All rights reserved.
  12. #
  13. # This program is free software: you can redistribute it and/or modify
  14. # it under the terms of the GNU General Public License as published by
  15. # the Free Software Foundation, either version 3 of the License, or
  16. # (at your option) any later version.
  17. #
  18. # This program is distributed in the hope that it will be useful,
  19. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. # GNU General Public License for more details.
  22. # You should have received a copy of the GNU General Public License
  23. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. #
  25.  
  26. alignment bottom_left
  27. background no
  28. border_width 1
  29. cpu_avg_samples 2
  30. default_color white
  31. default_outline_color no
  32. default_shade_color no
  33. draw_borders no
  34. draw_graph_borders no
  35. draw_outline no
  36. draw_shades no
  37. use_xft yes
  38. xftfont DejaVu Sans Mono:size=12
  39. gap_x 30
  40. gap_y 300
  41. minimum_size 450 450
  42. maximum_width 400
  43. net_avg_samples 2
  44. no_buffers yes
  45. out_to_console no
  46. out_to_stderr no
  47. extra_newline no
  48. own_window yes
  49. own_window_transparent yes
  50. own_window_argb_visual yes
  51. own_window_class Conky
  52. own_window_type normal
  53. own_window_hints undecorated,below,skip_taskbar,sticky
  54. stippled_borders 0
  55. update_interval 1.0
  56. uppercase no
  57. #use_spacer none
  58. show_graph_scale no
  59. show_graph_range no
  60.  
  61. TEXT
  62. #${scroll 16 $nodename - $sysname $kernel on $machine | }
  63. ${color grey}CPU Temp: ${color grey}${acpitemp}${color grey} Celsius
  64. $hr
  65. #${color grey}Uptime:$color $uptime
  66. #${color grey}Frequency (in MHz):$color $freq
  67. ${color grey}Frequency (in GHz):$color $freq_g
  68. ${color grey}CPU % :$color $cpu% ${cpubar 4}
  69. ${color grey}RAM :$color $mem/$memmax - $memperc% ${membar 4}
  70. ${color grey}Swap :$color $swap/$swapmax - $swapperc% ${swapbar 4}
  71. #${color grey}Processes:$color $processes ${color grey}Running:$color $running_processes
  72. $hr
  73. ${color grey}File systems free space:
  74. / $color${fs_free /}/${fs_size /} ${fs_bar 6 /}
  75. /store $color${fs_free /media/colt/c8cc21ac-3713-4341-b417-8a1dff8903f5/}/${fs_size /media/colt/c8cc21ac-3713-4341-b417-8a1dff8903f5/} ${fs_bar 6 /media/colt/c8cc21ac-3713-4341-b417-8a1dff8903f5/}
  76. /windowsd $color${fs_free /windowsd}/${fs_size /windowsd} ${fs_bar 6 /windowsd}
  77. /windowse $color${fs_free /windowse}/${fs_size /windowse} ${fs_bar 6 /windowse}
  78. #${color grey}Networking :
  79. ${color grey}eth1 : Up:$color ${upspeed eth1} ${color grey} - Down:$color ${downspeed eth1}
  80. ${color grey}eth0 : Up:$color ${upspeed eth0} ${color grey} - Down:$color ${downspeed eth0}
  81. $hr
  82. #${color grey}Name PID CPU% MEM%
  83. #${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
  84. #${color lightgrey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
  85. #${color lightgrey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
  86. #${color lightgrey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement