Guest User

conky.conf

a guest
Mar 3rd, 2023
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.48 KB | None | 0 0
  1. conky.config = {
  2. -- Conky settings --
  3.     background = false,
  4.     update_interval = 0.001,
  5.  
  6.     cpu_avg_samples = 10,
  7.     net_avg_samples = 10,
  8.  
  9.     override_utf8_locale = true,
  10.  
  11.     double_buffer = true,
  12.     no_buffers = true,
  13.  
  14.     text_buffer_size = 2048,
  15.     imlib_cache_size = 0,
  16.  
  17.     format_human_readable = true,
  18.  
  19. -- Window specifications --
  20.  
  21.     own_window = true,
  22.     own_window_class = 'Conky',
  23.     own_window_type = 'desktop',
  24.     own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  25.     own_window_transparent = false,
  26.     own_window_argb_value = 100,
  27.     own_window_colour = 'black',
  28.     own_window_argb_visual = true,
  29.  
  30.     border_inner_margin = 0,
  31.     border_outer_margin = 0,
  32.  
  33.     minimum_width = 300,
  34.     minimum_height = 1050,
  35.  
  36.     alignment = 'top_right',
  37.  
  38. -- Graphics settings --
  39.     draw_shades = false,
  40.     draw_outline = false,
  41.     draw_borders = false,
  42.     draw_graph_borders = false,
  43.  
  44. -- Text settings --
  45.     use_xft = true,
  46.     font = 'Bitstream Vera Sans Mono:size=8',
  47.     xftalpha = 0.8,
  48.  
  49.     uppercase = false,
  50.  
  51.     default_color = '#D1E7D1',
  52.     color1 = '#CCAB8D',
  53.  
  54. -- Lua Load --
  55.     lua_load = '~/.config/conky/loadAll.lua',
  56.     lua_draw_hook_pre = 'main',
  57. };
  58.  
  59. conky.text = [[
  60. ${color1}$nodename                                  ${alignr}$kernel
  61. ${color1}Uptime:${color} $uptime ${color1}          ${alignr}Load:${color} $loadavg
  62. ${color}$hr
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73. ${offset 27}${color1}CPU1: ${color}${cpu cpu1}%${goto 90}${color e6194b}█${offset 10}${color1}CPU2: ${color}${cpu cpu2}%${goto 165}${color f58231}█${offset 10}${color1}CPU3: ${color}${cpu cpu3}%${goto 240}${color ffe119}█${offset 10}${color1}CPU4: ${color}${cpu cpu4}%${goto 315}${color bfef45}
  74. ${offset 27}${color1}CPU5: ${color}${cpu cpu5}%${goto 90}${color 3cb44b}█${offset 10}${color1}CPU6: ${color}${cpu cpu6}%${goto 165}${color 42d4f4}█${offset 10}${color1}CPU7: ${color}${cpu cpu7}%${goto 240}${color 4363d8}█${offset 10}${color1}CPU8: ${color}${cpu cpu8}%${goto 315}${color 911eb4}
  75. ${offset 27}${color1}CPU9: ${color}${cpu cpu9}%${goto 90}${color f032e6}█${offset 10}${color1}CPU10: ${color}${cpu cpu10}%${goto 165}${color fabebe}█${offset 10}${color1}CPU11: ${color}${cpu cpu11}%${goto 240}${color ffd8b1}█${offset 10}${color1}CPU12: ${color}${cpu cpu12}%${goto 315}${color fffac8}
  76. ${color}$hr
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87. ${offset 27}${color1}RAM: ${color}${mem}/${memmax}${goto 165}${color ab1852}█${offset 5}${color1}SWAP: ${color}${swap}/${swapmax}${goto 315}${color 49a835}
  88. ${color}$hr
  89. ${diskio_read /dev/nvme0n1}
  90.  
  91. ]];
Add Comment
Please, Sign In to add comment