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; }