aly/thunderbird: add work profile and desktop entry

This commit is contained in:
Aly Raffauf 2024-06-29 16:45:32 -04:00
parent 04b5014f7a
commit 5ed2eb6637

View file

@ -29,9 +29,25 @@ in {
thunderbird = { thunderbird = {
enable = true; enable = true;
profiles.default = { profiles = {
isDefault = true; default.isDefault = true;
work = {};
}; };
}; };
}; };
xdg.desktopEntries.thunderwork = {
categories = ["Application" "Network" "Chat" "Email" "Feed" "GTK" "News"];
exec = "thunderbird -P work --name thunderwork %U";
comment = "Read and write e-mails or RSS feeds, or manage tasks on calendars.";
genericName = "Email Client";
icon = "thunderbird";
mimeType = ["message/rfc822" "x-scheme-handler/mailto" "text/calendar" "text/x-vcard"];
name = "Thunderbird (work)";
startupNotify = true;
terminal = false;
settings = {
StartupWMClass = "thunderwork";
};
};
} }