Advertisement
Guest User

Untitled

a guest
Feb 16th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 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. background yes
  27. use_xft yes
  28. xftfont Sans:size=8
  29. xftalpha 1
  30. update_interval 1.0
  31. total_run_times 0
  32. own_window yes
  33. own_window_transparent no
  34. own_window_type normal
  35. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  36. own_window_argb_visual yes
  37. own_window_argb_value 180
  38. double_buffer yes
  39. minimum_size 200 450
  40. maximum_width 200
  41. draw_shades no
  42. draw_outline no
  43. draw_borders no
  44. draw_graph_borders yes
  45. default_color white
  46. default_shade_color blue
  47. default_outline_color white
  48. alignment tr
  49. gap_x 12 #Normal GAP
  50. # gap_x 1932 # dual head GAP (1920 + normal)
  51. gap_y 12
  52. no_buffers yes
  53. uppercase no
  54. cpu_avg_samples 2
  55. override_utf8_locale no
  56. text_buffer_size 8192
  57. top_name_width 8
  58.  
  59. TEXT
  60. $nodename - $sysname $kernel
  61. $hr
  62. ${color white}Uptime:$color $uptime
  63. ${color white}Frequency (in MHz):$color $freq
  64. CPU Temp: ${execi 10 sensors | grep temp3 | awk '{print $2}' | sed 's/\+\([0-9.]*\).*/\1/'} C
  65. ${color white}CPU Usage:
  66. ${color white}${cpu cpu1}% ${goto 42}${cpubar cpu1 4}
  67. ${color white}${cpu cpu2}% ${goto 42}${cpubar cpu2 4}
  68. ${color white}${cpu cpu3}% ${goto 42}${cpubar cpu3 4}
  69. ${color white}${cpu cpu4}% ${goto 42}${cpubar cpu4 4}
  70.  
  71. ${color white}Processes:$color $processes ${color white}Running:$color $running_processes
  72. ${color white}RAM Usage:
  73. $memperc% ${membar 4}
  74. $hr
  75. ${color white}File systems:
  76. / ${goto 55}${fs_used_perc /}% ${fs_bar 6 /}
  77. /home ${goto 55}${fs_used_perc /home}% ${fs_bar 6 /home}
  78. $hr
  79. ${color white}Networking:
  80. Up:$color ${upspeed enp2s0} ${color white}
  81. ${upspeedgraph enp2s0}
  82. Down:$color ${downspeed enp2s0}
  83. ${downspeedgraph enp2s0}
  84. $hr
  85. ${color white}Name ${goto 75} PID ${goto 125} CPU% ${goto 175} MEM%
  86. ${color lightgrey} ${top name 1} ${goto 75} ${top pid 1} ${goto 125} ${top cpu 1} ${goto 175} ${top mem 1}
  87. ${color lightgrey} ${top name 2} ${goto 75} ${top pid 2} ${goto 125} ${top cpu 2} ${goto 175} ${top mem 2}
  88. ${color lightgrey} ${top name 3} ${goto 75} ${top pid 3} ${goto 125} ${top cpu 3} ${goto 175} ${top mem 3}
  89. ${color lightgrey} ${top name 4} ${goto 75} ${top pid 4} ${goto 125} ${top cpu 4} ${goto 175} ${top mem 4}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement