From 21a7f154932886bf5e84cdb53239f46867d21e84 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Wed, 14 Aug 2024 17:22:38 -0300 Subject: [PATCH] Added window management to the config --- home/desktops/hyprland/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/home/desktops/hyprland/default.nix b/home/desktops/hyprland/default.nix index 8b96c79..33e9590 100644 --- a/home/desktops/hyprland/default.nix +++ b/home/desktops/hyprland/default.nix @@ -10,6 +10,22 @@ # Optional # Whether to enable hyprland-session.target on hyprland startup systemd.enable = true; + + settings = { + decoration = { + shadow_offset = "0 5"; + "col.shadow" = "rgba(00000099)"; + }; + + "$mod" = "SUPER"; + + bindm = [ + # mouse movements + "$mod, mouse:272, movewindow" + "$mod, mouse:273, resizewindow" + "$mod ALT, mouse:272, resizewindow" + ]; + }; }; # ... }