Advertisement
Guest User

Untitled

a guest
Apr 15th, 2023
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. conky.config = {
  2. --==============================================================================
  3. -- 2021/10/2
  4. -- this is for conky version 1.10 or Newer
  5. --
  6. -- RegSpot - Conky theme (Based on REGULUS theme)
  7.  
  8. -- authors : Khiky-Merveilles & Madh93 & Argus_Khan
  9. -- license : Distributed under the terms of GNU GPL version 3 or later
  10. -- notes : Created on 2048x1152 resolution.
  11.  
  12. --==============================================================================
  13.  
  14. -- Size and Position settings --
  15. alignment = 'top_right',
  16. gap_x = 0,
  17. gap_y = 40,
  18. minimum_height = 1152,
  19. minimum_width = 900,
  20. maximum_width = 900,
  21.  
  22. -- Text settings --
  23. use_xft = true,
  24. font = 'Roboto:light:size=9',
  25.  
  26. -- Color Settings --
  27. default_color = 'b7a9c2',
  28. default_outline_color = 'white',
  29. default_shade_color = 'white',
  30. color1 = '212021',
  31. color2 = '4d3453',
  32. color3 = '0165FE',
  33.  
  34. -- Window Settings --
  35. background = true,
  36. border_width = 0,
  37. draw_borders = false,
  38. draw_graph_borders = false,
  39. draw_outline = false,
  40. draw_shades = false,
  41. own_window = true,
  42. own_window_colour = '000000',
  43. own_window_class = 'Conky',
  44. own_window_argb_visual = true,
  45. own_window_argb_value = 180,
  46. own_window_type = 'desktop',
  47. own_window_transparent = true,
  48. own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  49. stippled_borders = 0,
  50.  
  51.  
  52.  
  53. -- Others --
  54. cpu_avg_samples = 2,
  55. net_avg_samples = 2,
  56. double_buffer = true,
  57. out_to_console = false,
  58. out_to_stderr = false,
  59. extra_newline = false,
  60. update_interval = 1,
  61. uppercase = false,
  62. use_spacer = 'none',
  63. show_graph_scale = false,
  64. show_graph_range = false,
  65. lua_load = './rings-v1.2.1.lua',
  66. lua_draw_hook_pre = 'ring_stats',
  67. }
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement