From 357a19cb8cad62a05c700a410f4f3c5ec6b02376 Mon Sep 17 00:00:00 2001 From: The_miro Date: Fri, 26 Jun 2026 08:39:40 +0200 Subject: [PATCH] remigrating to custom monitor manager solution --- desktopenvs/hyprlua/hypr/hyprland.lua | 2 +- desktopenvs/hyprlua/hypr/usr/binds.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/desktopenvs/hyprlua/hypr/hyprland.lua b/desktopenvs/hyprlua/hypr/hyprland.lua index f52d45b..76de5bb 100644 --- a/desktopenvs/hyprlua/hypr/hyprland.lua +++ b/desktopenvs/hyprlua/hypr/hyprland.lua @@ -17,7 +17,7 @@ -- They are loaded in this specific order so that later modules can safely -- depend on earlier ones (e.g., binds may reference programs launched by -- autostart; input-device-exceptions builds on the global input baseline). -require("monitors") -- monitor layout, resolution, scale (managed by hyprmoncfg) +require("usr.monitors") -- monitor layout, resolution, scale (managed by hyprmoncfg) require("usr.envvars") -- environment variables injected into every child process require("usr.input") -- keyboard layout, mouse sensitivity, touchpad behaviour require("usr.binds") -- all keybindings and mouse button bindings diff --git a/desktopenvs/hyprlua/hypr/usr/binds.lua b/desktopenvs/hyprlua/hypr/usr/binds.lua index 0567274..09c38b5 100644 --- a/desktopenvs/hyprlua/hypr/usr/binds.lua +++ b/desktopenvs/hyprlua/hypr/usr/binds.lua @@ -58,7 +58,7 @@ hl.bind(mainMod .. " + ALT + F", hl.dsp.exec_cmd("wofi-calc")) hl.bind(mainMod .. " + S", hl.dsp.exec_cmd("[tag +mixer] pavucontrol")) hl.bind(mainMod .. " + U", hl.dsp.exec_cmd("[tag +centered-L] kitty btop")) hl.bind(mainMod .. " + W", hl.dsp.exec_cmd("[tag +centered-L] kitty -e ~/.config/scripts/wallpaper-picker ~/Pictures")) -hl.bind(mainMod .. " + SHIFT + M", hl.dsp.exec_cmd("[tag +centered-L] kitty -e hyprmoncfg")) +hl.bind(mainMod .. " + SHIFT + M", hl.dsp.exec_cmd("[tag +centered-L] kitty -e ~/.config/scripts/monitor-manager")) hl.bind(mainMod .. " + CTRL + R", hl.dsp.exec_cmd("[tag +centered-L] kitty -e ~/.config/scripts/amssh")) hl.bind(mainMod .. " + F1", hl.dsp.exec_cmd("[tag +centered] kitty ~/.config/scripts/helpmenu.sh")) hl.bind(mainMod .. " + CTRL + T", hl.dsp.exec_cmd("[tag +centered-S] kitty bash ~/.config/scripts/timer-pick"))