From a69f3d985924ca560baa549cecec4257be41ac10 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 3 May 2023 16:26:50 -0500 Subject: [PATCH] refactor(wezterm): do not dump gpus --- dots/.config/wezterm/config/gpu.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/dots/.config/wezterm/config/gpu.lua b/dots/.config/wezterm/config/gpu.lua index d2bb6569..6d2c73db 100644 --- a/dots/.config/wezterm/config/gpu.lua +++ b/dots/.config/wezterm/config/gpu.lua @@ -2,10 +2,8 @@ -- we are unable to locate a card that supports Vulkan we fall back to OpenGL local config = {} local wezterm = require("wezterm") -local wlib = require("wlib") local found_valid_gpu = false -wezterm.log_info(wlib.Table.dump(wezterm.gui.enumerate_gpus())) for _, gpu in ipairs(wezterm.gui.enumerate_gpus()) do if gpu.backend == "Vulkan" then wezterm.log_info("Found Usable Vulkan GPU\n Device Name -> " .. gpu.name .."\n Device Type -> " .. gpu.device_type)