Advertisement
Guest User

.conkyrc

a guest
Sep 19th, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. --[[
  2. Conky, a system monitor, based on torsmo
  3.  
  4. Any original torsmo code is licensed under the BSD license
  5.  
  6. All code written since the fork of torsmo is licensed under the GPL
  7.  
  8. Please see COPYING for details
  9.  
  10. Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
  11. Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
  12. All rights reserved.
  13.  
  14. This program is free software: you can redistribute it and/or modify
  15. it under the terms of the GNU General Public License as published by
  16. the Free Software Foundation, either version 3 of the License, or
  17. (at your option) any later version.
  18.  
  19. This program is distributed in the hope that it will be useful,
  20. but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. GNU General Public License for more details.
  23. You should have received a copy of the GNU General Public License
  24. along with this program. If not, see <http://www.gnu.org/licenses/>.
  25. ]]
  26.  
  27. conky.config = {
  28. alignment = 'top_right',
  29. background = true,
  30. border_width = 0.5,
  31. cpu_avg_samples = 4,
  32. default_color = 'white',
  33. default_outline_color = 'grey',
  34. default_shade_color = 'black',
  35. draw_borders = true,
  36. draw_graph_borders = true,
  37. draw_outline = false,
  38. draw_shades = false,
  39. use_xft = true,
  40. font = 'DejaVu Sans Mono:size=10',
  41. gap_x = 5,
  42. gap_y = 50,
  43. minimum_height = 5,
  44. minimum_width = 5,
  45. net_avg_samples = 2,
  46. double_buffer = true,
  47. out_to_console = false,
  48. out_to_stderr = false,
  49. extra_newline = false,
  50. own_window = true,
  51. own_window_colour = '000000',
  52. own_window_class = 'Conky',
  53. own_window_argb_visual = true,
  54. own_window_argb_value = 175,
  55. own_window_type = 'desktop',
  56. own_window_transparent = true,
  57. own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  58. stippled_borders = 0,
  59. update_interval = 1,
  60. uppercase = false,
  61. use_spacer = 'none',
  62. show_graph_scale = false,
  63. show_graph_range = false
  64. }
  65.  
  66. conky.text = [[
  67. ${color grey}Info:$color ${scroll 32 Conky $conky_version - $sysname $nodename $kernel $machine}
  68. $hr
  69. ${color grey}Uptime:$color $uptime
  70. ${color grey}Frequency (in MHz):$color $freq
  71. ${color grey}Frequency (in GHz):$color $freq_g
  72. ${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
  73. ${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
  74. ${color grey}CPU Usage:$color $cpu% ${cpubar 4}
  75. ${color grey}Processes:$color $processes ${color grey}Running:$color $running_processes
  76. $hr
  77. ${color grey}File systems:
  78. / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
  79. ${color grey}Networking:
  80. Up:$color ${upspeed} ${color grey} - Down:$color ${downspeed}
  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}
  87. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement