Conky question about GPU dispalys

Hi Ricky,
I’ve changed my set up, What do you think of this:

Here’s the code:

-- Conky, a system monitor https://github.com/brndnmtthws/conky

--
-- This configuration file is Lua code. You can write code in here, and it will
-- execute when Conky loads. You can use it to generate your own advanced
-- configurations.
--
-- Try this (remove the `--`):
--
--  print("Loading Conky config")
--
-- For more on Lua, see:
-- https://www.lua.org/pil/contents.html
--
-- Conky Lua API: https://conky.cc/lua

-- Configuration settings: https://conky.cc/config_settings
-- The Conky Window set up
conky.config = {
    alignment = 'bottom_right',
    background = false,
    border_width = 1,
    cpu_avg_samples = 2,
    default_color = 'purple',
    default_outline_color = 'green',
    default_shade_color = 'white',
    double_buffer = true,
    draw_borders = true,
    draw_graph_borders = true,
    draw_outline = false,
    draw_shades = false,
    extra_newline = true,
    font = 'DejaVu Sans Mono:size=12',
    gap_x = 20,
    gap_y = 20,
    minimum_height = 999,
    minimum_width = 500,
    net_avg_samples = 2,
    no_buffers = true,
    out_to_console = false,
    out_to_ncurses = false,
    out_to_stderr = false,
    out_to_wayland = false,
    out_to_x = true,
    own_window = true,
    own_window_class = 'Conky',
    own_window_type = 'normal',
    own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager',
    show_graph_range = true,
    show_graph_scale = true,
    stippled_borders = 0,
    update_interval = 1.0,
    uppercase = false,
    use_spacer = 'none',
    use_xft = true,
       }

-- Variables: https://conky.cc/variables
-- The body of Conky
conky.text = [[
${color grey}Info:${color yellow} ${scroll 32 Conky $conky_version - $sysname $nodename $kernel $machine}
${color purple}$hr
${color green}Uptime:${color yellow} $uptime 

${color red}Frequency (in GHz):$color $freq_g

${color pink}RAM Usage:${color pink} $mem/$memmax - $memperc% ${membar 4}

${color orange}Swap Usage:${color orange} $swap/$swapmax - $swapperc% ${swapbar 4}

${color maroon}CPU0 Usage:${color maroon} $cpu% 
${color maroon}CPU1 Usage:${color maroon} $cpu% 
${color maroon}CPU2 Usage:${color maroon} $cpu% 
${color maroon}CPU3 Usage:${color maroon} $cpu% 
${color maroon}CPU4 Usage:${color maroon} $cpu% 
${color maroon}CPU5 Usage:${color maroon} $cpu% 
${color maroon}CPU6 Usage:${color maroon} $cpu% 
${color maroon}CPU7 Usage:${color maroon} $cpu% 

${color green} GPUs:2 ${nvidia modelname} ${nvidia driverversion} 
${color orange}${nvidiagraph gpuutil 40,C8 -t -l -m GPU-8e59faef-cee9-258c-a5e4-0b525715b9d2 }

${color cyan}Processes:${color cyan} $processes ${color cyan}Running:${color cyan} $running_processes
${color purple}$hr
${color red}File systems:
${color red}${fs_used /}/${fs_size /} ${fs_bar 6 /}

${color gold}Networking: Up:${upspeed enp0s31f6} bytes Down: ${downspeed enp0s31f6} bytes

${color green}Virtual Networks:
${color gold}VIRBR0 Up:${upspeed virbr0} Down:${downspeed virbr0} (main virtual network)
${color yellow}VM's Networks 
${color yellow}VNET0 Up:${upspeed vnet0} Down: ${downspeed vnet0} 
${color yellow}VNET1 Up:${upspeed vnet1} Down: ${downspeed vnet1}
${color yellow}VNET2 Up:${upspeed vnet2} Down: ${downspeed vnet2} 
${color yellow}VNET3 Up:${upspeed vnet3} Down: ${downspeed vnet3} 
${color yellow}VNET4 Up:${upspeed vnet4} Down: ${downspeed vnet4} 
${color yellow}VNET5 Up:${upspeed vnet5} Down: ${downspeed vnet5} 
${color purple}$hr
${color grey}Name              PID     CPU%   MEM%
${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
${color lightgrey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
${color lightgrey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
${color lightgrey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
]]