diff options
author | Devaev Maxim <[email protected]> | 2018-12-19 01:07:00 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-12-19 01:07:00 +0300 |
commit | e887159a188a6b92ebd8f8e040b24118e6e7fc22 (patch) | |
tree | da22eb7b0b4c6e1bfcf71146bd38a167adebca9e | |
parent | 28f2875e7e5c64c5442d36aa7fb80cc0f2a5faea (diff) |
removed kvm from extras
-rw-r--r-- | extras/.gitignore | 0 | ||||
-rw-r--r-- | extras/kvm/manifest.yaml | 7 | ||||
-rw-r--r-- | web/share/js/index/main.js | 3 |
3 files changed, 3 insertions, 7 deletions
diff --git a/extras/.gitignore b/extras/.gitignore new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/extras/.gitignore diff --git a/extras/kvm/manifest.yaml b/extras/kvm/manifest.yaml deleted file mode 100644 index 609cb495..00000000 --- a/extras/kvm/manifest.yaml +++ /dev/null @@ -1,7 +0,0 @@ -name: KVM -description: Open KVM session in a web browser -icon: share/svg/kvm.svg -path: kvm -keyboard_cap: true -daemon: kvmd -place: 0 diff --git a/web/share/js/index/main.js b/web/share/js/index/main.js index 369706ac..edc52073 100644 --- a/web/share/js/index/main.js +++ b/web/share/js/index/main.js @@ -39,6 +39,9 @@ function __loadKvmdInfo() { }); $("apps-box").innerHTML = "<ul id=\"apps\"></ul>"; + + $("apps").innerHTML += __makeApp(null, "kvm", "share/svg/kvm.svg", "KVM"); + apps.forEach(function(app) { $("apps").innerHTML += __makeApp(null, app.path, app.icon, app.name); }); |