From ed2448f84c7e371ef32d1559b295bc38a09e9b3b Mon Sep 17 00:00:00 2001 From: joy Date: Fri, 4 Oct 2024 00:07:09 +0200 Subject: [PATCH] hyprexpo --- modules/hypr/land/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/hypr/land/default.nix b/modules/hypr/land/default.nix index f1c061e..830f883 100644 --- a/modules/hypr/land/default.nix +++ b/modules/hypr/land/default.nix @@ -1,4 +1,4 @@ -{...}: { +{pkgs,...}: { programs.hyprland = { enable = true; }; @@ -87,6 +87,7 @@ "$mod, Z, exec, sh $sciPath/screen.sh" "$mod, V, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy" "$mod, O, exec, sh $sciPath/mpv.sh" + "$mod+Shift, TAB,hyprexpo:expo, toggleoverview" # controles "$mod, Q, killactive" "$mod, W, togglefloating" @@ -157,6 +158,9 @@ ", XF86AudioMicMute, exec, sh $sciPath/volume.sh -t" ]; }; + plugins = with pkgs.hyprlandPlugins; [ + hyprexpo + ]; }; }; }