diff --git a/home/system/hyprland/hyprspace.nix b/home/system/hyprland/hyprspace.nix index b4f1725..3ca4866 100644 --- a/home/system/hyprland/hyprspace.nix +++ b/home/system/hyprland/hyprspace.nix @@ -2,6 +2,19 @@ { inputs, pkgs, ... }: { wayland.windowManager.hyprland = { plugins = [ inputs.hyprspace.packages.${pkgs.system}.Hyprspace ]; - settings = { plugin = { overview = { autoDrag = false; }; }; }; + settings = { + plugin = { + overview = { + centerAligned = true; + hideTopLayers = true; + hideOverlayLayers = true; + showNewWorkspace = true; + exitOnClick = true; + exitOnSwitch = true; + drawActiveWorkspace = true; + autoDrag = false; + }; + }; + }; }; }