From c7e6266eb034646f7dd8c2201835da5e7b5aa4b7 Mon Sep 17 00:00:00 2001 From: Clemens Geibel Date: Fri, 24 Jun 2022 10:23:48 +0200 Subject: [PATCH] Added deltachat-desktop --- .../provs/desktop/domain/DesktopService.kt | 1 + .../provs/desktop/infrastructure/PackageBundles.kt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt index fe644e7..4044a12 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt @@ -79,6 +79,7 @@ fun Prov.provisionDesktop( aptInstall(BROWSER) aptInstall(EMAIL_CLIENT) + aptInstall(MESSENGER) aptInstall(OFFICE_SUITE) aptInstall(CLIP_TOOLS) diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt index 75027c9..9d34b34 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt @@ -12,6 +12,8 @@ val BROWSER = "firefox chromium-browser" val EMAIL_CLIENT = "thunderbird" +val MESSENGER = "deltachat-desktop" + val OFFICE_SUITE = "libreoffice" val CLIP_TOOLS = "xclip"