From 8263a9dea2a061081c321212c3d0dc2c2929f7c0 Mon Sep 17 00:00:00 2001 From: Roy Dumblauskas Date: Sun, 14 Jun 2026 15:37:26 -0500 Subject: [PATCH] monitor function --- roy-config/hypr/hyprland.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roy-config/hypr/hyprland.lua b/roy-config/hypr/hyprland.lua index a78929e..701dd13 100644 --- a/roy-config/hypr/hyprland.lua +++ b/roy-config/hypr/hyprland.lua @@ -89,7 +89,8 @@ hl.config({ hl.config({ misc = { force_default_wallpaper = 0, - disable_hyprland_logo = true + disable_hyprland_logo = true, + disable_splash_rendering = true } }) @@ -116,10 +117,9 @@ local mainMod = "SUPER" local function get_unfocused_monitor() local monitor = hl.exec_cmd( - [[hyprctl monitors -j | jq -r '[.[] | select(.focused == false) | .name][0]']] + "hyprctl monitors -j | jq -r '[.[] | select(.focused == false) | .name][0]'" ) - - return monitor:gsub("%s+$", "") + return monitor end hl.bind(mainMod .. " + Return", hl.dsp.exec_cmd(terminal))