feat(home): Auto open thunderbird

This commit is contained in:
punkfairie 2025-03-01 18:11:04 -08:00
parent f774f0c693
commit 84426f3d00
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 34 additions and 0 deletions

View file

@ -79,6 +79,12 @@ in {
description = "The browser to use."; description = "The browser to use.";
}; };
email = lib.mkOption {
type = lib.types.package;
default = config.programs.thunderbird.package;
description = "The email client to use.";
};
launcher = lib.mkOption { launcher = lib.mkOption {
type = lib.types.submodule { type = lib.types.submodule {
options = { options = {

View file

@ -48,6 +48,7 @@ in {
in [ in [
{command = ["sh" "-c" "${lib.getExe apps.terminal} -e tmux new -s main -A"];} {command = ["sh" "-c" "${lib.getExe apps.terminal} -e tmux new -s main -A"];}
(cmd (lib.getExe apps.browser)) (cmd (lib.getExe apps.browser))
(cmd (lib.getExe apps.email))
]; ];
layout = let layout = let
@ -104,6 +105,21 @@ in {
screenshot-path = "~/pictures/screenshots/%Y-%m-%d %H-%M-%S.png"; screenshot-path = "~/pictures/screenshots/%Y-%m-%d %H-%M-%S.png";
workspaces = {
"01-main" = {
open-on-output = builtins.elemAt cfg.monitors 0;
name = "main";
};
"02-web" = {
open-on-output = builtins.elemAt cfg.monitors 1;
name = "web";
};
"03-email" = {
open-on-output = builtins.elemAt cfg.monitors 1;
name = "email";
};
};
window-rules = window-rules =
[ [
{ {
@ -131,6 +147,18 @@ in {
} }
]; ];
open-on-output = builtins.elemAt cfg.monitors 1; open-on-output = builtins.elemAt cfg.monitors 1;
open-on-workspace = "web";
default-column-width.proportion = 1.0;
}
{
matches = [
{
app-id = "^thunderbird$";
at-startup = true;
}
];
open-on-output = builtins.elemAt cfg.monitors 1;
open-on-workspace = "email";
default-column-width.proportion = 1.0; default-column-width.proportion = 1.0;
} }
]); ]);