From 06162cf3adb0f7f0ed462b2cc1494840afef1888 Mon Sep 17 00:00:00 2001 From: see Date: Fri, 8 Apr 2022 11:26:02 +0200 Subject: [PATCH] added scrcpy --- .../provs/desktop/domain/DesktopService.kt | 1 + .../provs/desktop/infrastructure/PackageBundles.kt | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) 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 602f60e..71ff68a 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt @@ -48,6 +48,7 @@ fun Prov.provisionWorkplace( aptInstall(KEY_MANAGEMENT) aptInstall(VERSION_MANAGEMENT) aptInstall(NETWORK_TOOLS) + aptInstall(SCREEN_TOOLS) provisionKeys(gpg, ssh) provisionGit(gitUserName ?: whoami(), gitEmail, gpg?.let { gpgFingerprint(it.publicKey.plain()) }) 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 84e0fba..75027c9 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt @@ -36,4 +36,6 @@ val DRAWING_TOOLS = "inkscape dia" val CLOJURE_TOOLS = "leiningen" -val PASSWORD_TOOLS = "pwgen" \ No newline at end of file +val PASSWORD_TOOLS = "pwgen" + +val SCREEN_TOOLS = "scrcpy" \ No newline at end of file