From 9f3c4858c18f960837758eee2e180119749e5c95 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 11 Jun 2021 13:08:54 +0200 Subject: [PATCH] home: i3: fix spotify for good? Spotify doesn't always behave as expected, adding --no-auto-back-and-forth seems to help --- home/x/i3.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/x/i3.nix b/home/x/i3.nix index 400803c..076a4a6 100644 --- a/home/x/i3.nix +++ b/home/x/i3.nix @@ -130,7 +130,10 @@ in # its class until after initialization, so has to be done this way. # # See https://i3wm.org/docs/userguide.html#assign_workspace - { criteria = { class = "Spotify"; }; command = "move to workspace 8"; } + { + criteria = { class = "Spotify"; }; + command = "move --no-auto-back-and-forth to workspace 8"; + } ]; }; };