Add sipgate webphone as "application"

This commit is contained in:
Daniel Siepmann 2022-05-23 08:41:24 +02:00
parent 4a516a68c1
commit 4f2549a29e
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
3 changed files with 15 additions and 0 deletions

View file

@ -159,6 +159,15 @@
};
userContent = pkgs.lib.fileContents ./firefox/userContent.css;
};
phone = {
name = "phone";
id = 3;
isDefault = false;
userChrome = pkgs.lib.fileContents ./firefox/kioskLikeUserChrome.css;
settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
};
};
toggl = {
name = "toggl";
id = 1;

View file

@ -157,6 +157,7 @@ in {
"3:💬" = [
{ class = "^chat$"; }
{ class = "^Signal$"; }
{ class = "^phone$"; }
];
"4:" = [
{ class = "^Thunderbird$"; }

View file

@ -92,6 +92,11 @@
type = "Application";
exec = "${pkgs.chromium}/bin/chromium --class=\"chat\" --new-window --new-window --app=https://jitsi.werkraum-media.de/codappix";
};
phone = {
name = "Phone";
type = "Application";
exec = "${pkgs.firefox}/bin/firefox --class=\"phone\" --new-instance -P phone https://app.sipgate.com/w3/phone/phone";
};
toggl = {
name = "Toggl Time Tracking";
type = "Application";