Advertisement
Wrigs

Conky Config File

Apr 30th, 2022 (edited)
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. --[[
  2. #===============================================================================
  3. #
  4. # Date : 30 APR 2022
  5. # Editor : Wrigs
  6. # Source :
  7. # Version : 0.0.1
  8. # License : Distributed under the terms of GNU GPL version 2 or later
  9. #===============================================================================
  10. # CONKY
  11. # For commands in conky.config section:
  12. # http://conky.sourceforge.net/config_settings.html
  13. #
  14. # For commands in conky.text section:
  15. # http://conky.sourceforge.net/variables.html
  16. #
  17. # A PDF with all variables is provided
  18. #===============================================================================
  19. # FONTS
  20. # To avoid copyright infringements you will have to download
  21. # and install the fonts yourself sometimes.
  22. #===============================================================================
  23. # GENERAL INFO ABOUT FONTS
  24. # Go and look for a nice font on sites like http://www.dafont.com/
  25. # Download and unzip - double click the font to install it (font-manager)
  26. # No font-manager then put fonts in ~/.fonts
  27. # Change the font name in the conky
  28. # The name can be known with a terminal command: fc-list | grep "part of name"
  29. # Change width and height of the conky according to font
  30. # Reboot your system or fc-cache -fv in terminal
  31. # Enjoy
  32. #===============================================================================
  33. # FONTS FOR THIS CONKY
  34. # Hasklig Font v1.2 or later
  35. # https://github.com/i-tu/Hasklig/
  36. #===============================================================================
  37. # For more on Lua, see:
  38. # https://www.lua.org/pil/contents.html
  39. #===============================================================================
  40. ]]
  41.  
  42. conky.config = {
  43. alignment = 'top_right',
  44. background = false,
  45. border_width = 1,
  46. cpu_avg_samples = 2,
  47. default_color = 'white',
  48. default_outline_color = 'white',
  49. default_shade_color = 'white',
  50. double_buffer = true,
  51. draw_borders = false,
  52. draw_graph_borders = true,
  53. draw_outline = false,
  54. draw_shades = false,
  55. extra_newline = false,
  56. font = 'Hasklig:size=12',
  57. gap_x = 60,
  58. gap_y = 60,
  59. minimum_height = 5,
  60. minimum_width = 5,
  61. net_avg_samples = 2,
  62. no_buffers = true,
  63. out_to_console = false,
  64. out_to_ncurses = false,
  65. out_to_stderr = false,
  66. out_to_x = true,
  67. own_window = true,
  68. own_window_class = 'Conky',
  69. own_window_type = 'desktop',
  70. show_graph_range = false,
  71. show_graph_scale = false,
  72. stippled_borders = 0,
  73. update_interval = 1.0,
  74. uppercase = false,
  75. use_spacer = 'none',
  76. use_xft = true,
  77. }
  78.  
  79. conky.text = [[
  80. ${color grey}Info:$color ${scroll 32 Conky $conky_version - $sysname $nodename $kernel $machine}
  81. $hr
  82. ${color grey}Uptime:$color $uptime
  83. ${color grey}Frequency (in MHz):$color $freq
  84. ${color grey}Frequency (in GHz):$color $freq_g
  85. ${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
  86. ${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
  87. ${color grey}CPU Usage:$color $cpu% ${cpubar 4}
  88. ${color grey}Processes:$color $processes ${color grey}Running:$color $running_processes
  89. $hr
  90. ${color grey}File systems:
  91. / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
  92. ${color grey}Networking:
  93. Up:$color ${upspeed} ${color grey} - Down:$color ${downspeed}
  94. $hr
  95. ${color grey}Name PID CPU% MEM%
  96. ${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
  97. ${color lightgrey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
  98. ${color lightgrey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
  99. ${color lightgrey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
  100. $hr
  101. ${color grey}${alignc}KEYBINDINGS
  102. $hr
  103. ${color lightgrey}Run Command${goto 225}Alt + F2
  104. ${color lightgrey}Ulauncher${goto 225}Alt + F3
  105. ${color lightgrey}Gnome Terminal${goto 225}Ctrl + Alt + T
  106. ${color lightgrey}Tilix Terminal${goto 225}Super + Enter
  107. ${color lightgrey}Show Applications${goto 225}Super + A
  108.  
  109. ]]
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement