diff --git a/modules/home/sway/default.nix b/modules/home/sway/default.nix index 0296bda..5446f5b 100644 --- a/modules/home/sway/default.nix +++ b/modules/home/sway/default.nix @@ -1,6 +1,20 @@ -{ pkgs, ... }: { +{ pkgs, username, ... }: { home.packages = with pkgs; [ swayfx autotiling + # libinput-gestures + # wmctrl ]; + #home.file = { + # "/home/${username}/.config/libinput-gestures/sway.conf" = { + # executable = false; + # text = " + # # Cycle right through sway workspaces + # gesture: swipe right 3 swaymsg focus right + + # # Cycle left through sway workspaces + # gesture: swipe left 3 swaymsg focus left + # "; + # }; + #}; }