conky.conf.bak 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # ORIGINAL CONKY CONFIG with only colors changed
  2. --[[
  3. Conky, a system monitor, based on torsmo
  4. Any original torsmo code is licensed under the BSD license
  5. All code written since the fork of torsmo is licensed under the GPL
  6. Please see COPYING for details
  7. Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
  8. Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
  9. All rights reserved.
  10. This program is free software: you can redistribute it and/or modify
  11. it under the terms of the GNU General Public License as published by
  12. the Free Software Foundation, either version 3 of the License, or
  13. (at your option) any later version.
  14. This program is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. GNU General Public License for more details.
  18. You should have received a copy of the GNU General Public License
  19. along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. ]]
  21. conky.config = {
  22. alignment = 'top_left',
  23. background = true,
  24. border_width = 1,
  25. cpu_avg_samples = 2,
  26. default_color = '#00ff9c',
  27. default_outline_color = '#ff0078',
  28. default_shade_color = '#ff0078',
  29. double_buffer = true,
  30. draw_borders = false,
  31. draw_graph_borders = true,
  32. draw_outline = false,
  33. draw_shades = false,
  34. extra_newline = false,
  35. font = 'Ubuntu-Mono:size=22',
  36. gap_x = 50,
  37. gap_y = 348,
  38. minimum_height = 5,
  39. minimum_width = 5,
  40. net_avg_samples = 2,
  41. no_buffers = true,
  42. out_to_console = false,
  43. out_to_ncurses = false,
  44. out_to_stderr = false,
  45. out_to_x = true,
  46. own_window = true,
  47. own_window_class = 'Conky',
  48. own_window_type = 'desktop',
  49. show_graph_range = false,
  50. show_graph_scale = false,
  51. stippled_borders = 0,
  52. update_interval = 1.0,
  53. uppercase = false,
  54. use_spacer = 'none',
  55. use_xft = true,
  56. own_window = true,
  57. own_window_transparent = true,
  58. own_window_argb_visual = true,
  59. own_window_type = 'desktop',
  60. }
  61. conky.text = [[
  62. ${color #ff0078}Info:$color az@ws
  63. $hr
  64. ${color grey}Uptime:$color $uptime
  65. ${color grey}Frequency (in MHz):$color $freq
  66. ${color grey}Frequency (in GHz):$color $freq_g
  67. ${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
  68. ${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
  69. ${color grey}CPU Usage:$color $cpu% ${cpubar 4}
  70. ${color grey}Processes:$color $processes ${color grey}Running:$color $running_processes
  71. $hr
  72. ${color grey}File systems:
  73. SSD $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
  74. HDD $color${fs_used /mnt/mass_storage/}/${fs_size /mnt/mass_storage/} ${fs_bar 6 /mnt/mass_storage/}
  75. $hr
  76. ${color #00ff9c}Name PID CPU% MEM%
  77. ${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
  78. ${color lightgrey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
  79. ${color lightgrey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
  80. ${color lightgrey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
  81. ]]