mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:43:55 -05:00
aly/thunderbird: add work profile and desktop entry
This commit is contained in:
parent
04b5014f7a
commit
5ed2eb6637
|
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue