updated configs, added AI to waku

This commit is contained in:
2026-03-26 16:20:13 +09:00
parent 12c8cc4d69
commit ad4a10ec09
5 changed files with 104 additions and 45 deletions

View File

@@ -1,6 +1,6 @@
{ config, pkgs, lib, ... }:
let
modKey = "Mod1";
modKey = "Mod4";
UP = "k";
DOWN = "j";
LEFT = "h";
@@ -114,7 +114,7 @@ in
"${modKey}+f" = "fullscreen toggle";
"${modKey}+s" = "layout stacking";
"${modKey}+w" = "layout tabbed";
"${modKey}+e" = "layout split";
"${modKey}+e" = "layout toggle split";
"${modKey}+Shift+space" = "floating toggle";
"${modKey}+space" = "focus mode_toggle";
"${modKey}+Shift+minus" = "move scratchpad";
@@ -147,5 +147,9 @@ in
};
};
};
home.packages = with pkgs; [
rofi
];
}