From 6fac18a40a87320eddd6dbd01a1c2624b8a7f559 Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Fri, 23 Dec 2022 09:17:58 +0100 Subject: [PATCH] Fix issue with Firefox in sway Apparently Firefox does not like it if sway is configured with wildcards for commands like input, output and seat. --- home-manager/modules/sway/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/modules/sway/default.nix b/home-manager/modules/sway/default.nix index e3f4ed9..3a258f5 100644 --- a/home-manager/modules/sway/default.nix +++ b/home-manager/modules/sway/default.nix @@ -225,7 +225,7 @@ in workspaceAutoBackAndForth = true; seat = { - "*" = { + "seat0" = { hide_cursor = "when-typing enable"; }; };