From 84426f3d0079d8cf3a29a80f6716dbd7e7a931f2 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 1 Mar 2025 18:11:04 -0800 Subject: [PATCH] feat(home): Auto open thunderbird --- modules/home/options/apps/default.nix | 6 ++++++ modules/home/wayland/niri/default.nix | 28 +++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/modules/home/options/apps/default.nix b/modules/home/options/apps/default.nix index d8692f6..504d2d7 100644 --- a/modules/home/options/apps/default.nix +++ b/modules/home/options/apps/default.nix @@ -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 = { diff --git a/modules/home/wayland/niri/default.nix b/modules/home/wayland/niri/default.nix index 37c0114..920e775 100644 --- a/modules/home/wayland/niri/default.nix +++ b/modules/home/wayland/niri/default.nix @@ -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; } ]);