From b991c66c2eca99b7b49a761b0fb74b5a366d56c0 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Mon, 25 Nov 2024 10:01:58 +0100 Subject: [PATCH] put bindings to hyprspace file --- home/system/hyprland/bindings.nix | 2 +- home/system/hyprland/hyprspace.nix | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/home/system/hyprland/bindings.nix b/home/system/hyprland/bindings.nix index 339f51c..3771a10 100644 --- a/home/system/hyprland/bindings.nix +++ b/home/system/hyprland/bindings.nix @@ -10,7 +10,7 @@ "$mod,SPACE, exec, menu" # Launcher "$mod,C, exec, quickmenu" # Quickmenu "$shiftMod,SPACE, exec, hyprfocus-toggle" # Toggle HyprFocus - "$mod,TAB, overview:toggle" # Overview + # "$mod,TAB, overview:toggle" # Overview "$mod,Q, killactive," # Close window "$mod,T, togglefloating," # Toggle Floating diff --git a/home/system/hyprland/hyprspace.nix b/home/system/hyprland/hyprspace.nix index 29ca6a6..4e68ed0 100644 --- a/home/system/hyprland/hyprspace.nix +++ b/home/system/hyprland/hyprspace.nix @@ -2,6 +2,13 @@ wayland.windowManager.hyprland = { plugins = [ inputs.hyprspace.packages.${pkgs.system}.Hyprspace ]; - settings = { plugin = { overview = { autoDrag = false; }; }; }; + settings = { + plugin = { overview = { autoDrag = false; }; }; + + bind = [ + "$mod,TAB, overview:toggle" # Overview + + ]; + }; }; }