From 1971d7f7d563112c6079ae1a80947f325a3608c5 Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Sat, 21 Mar 2026 10:36:56 +0100 Subject: [PATCH] add some actions; add languages --- modules/linux/xserver.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/modules/linux/xserver.nix b/modules/linux/xserver.nix index d56af2b..f27fe93 100644 --- a/modules/linux/xserver.nix +++ b/modules/linux/xserver.nix @@ -70,6 +70,10 @@ enable = true; package = pkgs.niri; settings = { + input.keyboard.xkb = { + layout = "us,ru"; + options = "grp:win_space_toggle"; + }; layout = { focus-ring = { enable = false; @@ -104,7 +108,7 @@ "Mod+Alt+B" = { hotkey-overlay.title = "Open Secondary Browser: firefox"; - action.spawn = [ "firefox" ]; + action.spawn = [ "sh" "-" "firefox" ]; }; "Mod+Shift+Q" = { @@ -135,6 +139,11 @@ action.spawn = [ "helium" "https://x.com/i/notifications" ]; }; + "Mod+T" = { + hotkey-overlay.title = "T3 Chat"; + action.spawn = [ "helium" "https://t3.chat/" ]; + }; + "Mod+Alt+E" = { hotkey-overlay.title = "File Manager: Yazi"; action.spawn = [ "yazi" ]; @@ -347,7 +356,7 @@ "Mod+Ctrl+WheelScrollUp".action.set-window-height = "+5%"; # Window Modes - "Mod+T".action.toggle-window-floating = { }; + "Mod+V".action.toggle-window-floating = { }; "Mod+F".action.fullscreen-window = { }; "Mod+M".action.maximize-column = { };