feat(i3): assign kitty and firefox to workspaces and auto-start

main
mandlm 2022-06-26 21:13:00 +02:00
parent ecfba4b276
commit 70a5a3a702
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 12 additions and 0 deletions

View File

@ -32,6 +32,18 @@
size = 12.0;
};
}];
defaultWorkspace = "workspace number 1";
startup = [
{ command = "${pkgs.kitty}/bin/kitty"; }
{ command = "${pkgs.firefox}/bin/firefox"; }
];
assigns = {
"1" = [{ class = "^kitty$"; }];
"5" = [{ class = "^firefox$"; }];
};
};
};