From 7d80c1041b0dcb75b4efe7fb44073ef1ede8cf61 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sun, 18 Feb 2024 00:01:19 +0100 Subject: [PATCH] hyprland: change some options - enable compose - add shortcuts --- home/sessions/hyprland.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/home/sessions/hyprland.nix b/home/sessions/hyprland.nix index 5b88930..7b31f7a 100644 --- a/home/sessions/hyprland.nix +++ b/home/sessions/hyprland.nix @@ -93,6 +93,9 @@ in # kb_model = # kb_options = # kb_rules = + kb_options = [ + "compose:ralt" + ]; follow_mouse = mkd true; @@ -190,6 +193,9 @@ in "$mod, P, pseudo," # dwindle" "$mod, O, togglesplit," # dwindle" + "$mod, f, fullscreen" + "$mod CONTROL, f, fakefullscreen" + # Move focus with mod + arrow keys "$mod, left, movefocus, l" "$mod, right, movefocus, r" @@ -201,6 +207,11 @@ in "$mod, k, movefocus, u" "$mod, l, movefocus, r" + "$mod SHIFT, h, swapwindow, l" + "$mod SHIFT, j, swapwindow, d" + "$mod SHIFT, k, swapwindow, u" + "$mod SHIFT, l, swapwindow, r" + # Switch workspaces with mod + [0-9] "$mod, 1, workspace, 1" "$mod, 2, workspace, 2"