From ceb9e91c3cfcf858bdf703ea12c3f5965a226a80 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Fri, 8 Oct 2021 23:00:57 -0400 Subject: [PATCH] Add startup for i3 --- X11/i3.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/X11/i3.nix b/X11/i3.nix index 650b5a1..3c97fc7 100644 --- a/X11/i3.nix +++ b/X11/i3.nix @@ -86,6 +86,15 @@ in } ]) (builtins.attrNames wsAttrs)) ))); + + # Workspace + config.defaultWorkspace = "workspace ${builtins.getAttr "1" wsAttrs}"; + config.startup = [ + { command = "firefox"; } + { command = "discord"; } + { command = "dex -ae i3"; } + { command = "ibus-daemon -drxR"; } + ]; };