From f8079c6185ddae5fe84a73c53a4be80e5f2e21cf Mon Sep 17 00:00:00 2001 From: Martin Nygaard Jensen <69148218+ravager-dk@users.noreply.github.com> Date: Tue, 4 Apr 2023 17:34:49 +0200 Subject: Add Citrix workspace (#328) --- recipes/citrix-workspace/icon.svg | 1 + recipes/citrix-workspace/index.js | 1 + recipes/citrix-workspace/package.json | 12 ++++++++++++ recipes/citrix-workspace/webview.js | 9 +++++++++ 4 files changed, 23 insertions(+) create mode 100644 recipes/citrix-workspace/icon.svg create mode 100644 recipes/citrix-workspace/index.js create mode 100644 recipes/citrix-workspace/package.json create mode 100644 recipes/citrix-workspace/webview.js diff --git a/recipes/citrix-workspace/icon.svg b/recipes/citrix-workspace/icon.svg new file mode 100644 index 0000000..12f940c --- /dev/null +++ b/recipes/citrix-workspace/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/recipes/citrix-workspace/index.js b/recipes/citrix-workspace/index.js new file mode 100644 index 0000000..dd41f72 --- /dev/null +++ b/recipes/citrix-workspace/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/citrix-workspace/package.json b/recipes/citrix-workspace/package.json new file mode 100644 index 0000000..b7f8619 --- /dev/null +++ b/recipes/citrix-workspace/package.json @@ -0,0 +1,12 @@ +{ + "id": "citrix-workspace", + "name": "Citrix Workspace", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://{teamId}.cloud.com", + "hasNotificationSound": true, + "hasTeamId": true, + "urlInputSuffix": ".cloud.com" + } +} diff --git a/recipes/citrix-workspace/webview.js b/recipes/citrix-workspace/webview.js new file mode 100644 index 0000000..56a20b6 --- /dev/null +++ b/recipes/citrix-workspace/webview.js @@ -0,0 +1,9 @@ +const _path = _interopRequireDefault(require('path')); + +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +module.exports = Ferdium => { + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +}; -- cgit v1.2.3-54-g00ecf