i3: separate startup commands

inky
Elnu 12 months ago
parent 84c351f8fc
commit 1acbedab95

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

Loading…
Cancel
Save