From 093a6397b9a4a0965f75790b42e8090656e5a124 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Tue, 4 Mar 2025 21:42:49 +0100 Subject: [PATCH] remove the hyprspace shortcut --- home/system/hyprland/hyprspace.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/home/system/hyprland/hyprspace.nix b/home/system/hyprland/hyprspace.nix index 671620d..98a2893 100644 --- a/home/system/hyprland/hyprspace.nix +++ b/home/system/hyprland/hyprspace.nix @@ -1,11 +1,6 @@ { inputs, pkgs, ... }: { wayland.windowManager.hyprland = { plugins = [ inputs.hyprspace.packages.${pkgs.system}.Hyprspace ]; - settings = { - plugin = { overview = { autoDrag = false; }; }; - bind = [ - "$mod,TAB, overview:toggle" # Overview - ]; - }; + settings = { plugin = { overview = { autoDrag = false; }; }; }; }; }