From 1acbedab95130386712dea2ab65b80344dfa62bc Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Thu, 25 May 2023 11:48:16 -0700 Subject: [PATCH] i3: separate startup commands --- modules/i3/default.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/modules/i3/default.nix b/modules/i3/default.nix index 08c06e2..f5ef213 100644 --- a/modules/i3/default.nix +++ b/modules/i3/default.nix @@ -63,7 +63,22 @@ in with theme.colors; { }; startup = [ { - command = "(systemctl --user restart polybar &) && (nm-applet &) && (nextcloud &) && (xborders --border-rgb ${builtins.substring 1 6 primary}ff --border-radius 12 --border-width 2 --smart-hide-border --disable-version-warning)"; + command = "systemctl --user restart polybar &"; + always = true; + notification = false; + } + { + command = "nm-applet &"; + always = true; + notification = false; + } + { + command = "nextcloud &"; + always = true; + notification = false; + } + { + command = "(xborders --border-rgb ${builtins.substring 1 6 primary}ff --border-radius 12 --border-width 2 --smart-hide-border --disable-version-warning) &"; always = true; notification = false; }