all repos — nixfiles @ 5660f91cc28aaa659524d6fa82c7962ad10d47ec

System and user configuration, managed by nix and home-manager

Fix i3 issues on satoshipad
Alan Pearce alan@alanpearce.eu
Mon, 07 Oct 2019 15:30:32 +0200
commit

5660f91cc28aaa659524d6fa82c7962ad10d47ec

parent

69760bb6e961ec136e7e5d0714bfd2de7b26f955

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M user/satoshipad.nixuser/satoshipad.nix
@@ -29,12 +29,13 @@ xsession.windowManager.i3 = {     config = {
       assigns = {
         "1" = [{ class = "^Slack"; }];
+        "2" = [{ class = "^Firefox"; }];
         "6" = [{ class = "^Emacs$"; }];
       };
       startup = [
-        { command = "slack"; };
-        { command = "firefox-devedition"; workspace = 2; };
-        { command = "emacs"; };
+        { command = "slack"; }
+        { command = "firefox-devedition"; }
+        { command = "emacs"; }
       ];
     };
     extraConfig = ''
@@ -48,7 +49,6 @@ workspace 7 output secondary       workspace 8 output secondary
       workspace 9 output secondary
       workspace 10 output secondary
-
     '';
   };
 }