From 4cdb66f268b2b9d03152e9231ec71b41e95ddc35 Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Thu, 2 Feb 2023 18:43:04 -0800 Subject: [PATCH] Fixed swipe right not working and indentation --- modules/fusuma.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/modules/fusuma.nix b/modules/fusuma.nix index 3b7536a..f607926 100644 --- a/modules/fusuma.nix +++ b/modules/fusuma.nix @@ -7,16 +7,16 @@ extraPackages = with pkgs; [ coreutils xdotool ]; settings = { - swipe = { - "4" = { - left = { - command = "xdotool set_desktop --relative -- 1"; - }; + swipe = { + "4" = { + left = { + command = "xdotool set_desktop --relative -- 1"; + }; + right = { + command = "xdotool set_desktop --relative -- -1"; + }; }; - right = { - command = "xdotool set_desktop --relative -- -1"; - }; - }; - }; - }; + }; + }; + }; }