From 1cb855c181b57915317a1a8c31616c479abe007b Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Thu, 27 Mar 2025 15:39:33 +0100 Subject: [PATCH] hyprspace config update Former-commit-id: 676eed1fdfb653f301f071f49e5279a283188cf8 --- home/system/hyprland/hyprspace.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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; + }; + }; + }; }; }