From b6eebba27a964d583d1bc44631948d65c416584b Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 2 Dec 2024 11:55:22 +0100 Subject: [PATCH] chore: adds old stuff that i had added but is no longer required now :p --- modules/home/sway/default.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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 + # "; + # }; + #}; }