feat(home): Auto open thunderbird
This commit is contained in:
parent
f774f0c693
commit
84426f3d00
2 changed files with 34 additions and 0 deletions
|
@ -79,6 +79,12 @@ in {
|
|||
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 {
|
||||
type = lib.types.submodule {
|
||||
options = {
|
||||
|
|
|
@ -48,6 +48,7 @@ in {
|
|||
in [
|
||||
{command = ["sh" "-c" "${lib.getExe apps.terminal} -e tmux new -s main -A"];}
|
||||
(cmd (lib.getExe apps.browser))
|
||||
(cmd (lib.getExe apps.email))
|
||||
];
|
||||
|
||||
layout = let
|
||||
|
@ -104,6 +105,21 @@ in {
|
|||
|
||||
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 =
|
||||
[
|
||||
{
|
||||
|
@ -131,6 +147,18 @@ in {
|
|||
}
|
||||
];
|
||||
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;
|
||||
}
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue