blob: 31c6905a19015e946cbbfde48ddae4f4e2c2142f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
function main() {
__setAppText();
__loadKvmdInfo();
}
function __setAppText() {
var url = window.location.href;
$("app-text").innerHTML = `
<span class="code-comment"># On Linux using Chromium/Chrome via any terminal:<br>
$</span> \`which chromium 2>/dev/null || which chrome 2>/dev/null\` --app="${url}"<br>
<br>
<span class="code-comment"># On MacOS using Terminal application:<br>
$</span> /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --app="${url}"<br>
<br>
<span class="code-comment"># On Windows via cmd.exe:<br>
C:\></span> start chrome --app="${url}"
`;
}
function __loadKvmdInfo() {
var http = tools.makeRequest("GET", "/kvmd/info", function() {
if (http.readyState === 4) {
if (http.status === 200) {
var info = JSON.parse(http.responseText).result;
var apps = Object.values(info.extras).sort(function(a, b) {
if (a["place"] < b["place"]) {
return -1;
} else if (a["place"] > b["place"]) {
return 1;
} else {
return 0;
}
});
apps.forEach(function(app) {
$("apps").innerHTML += `
<li>
<div class="app">
<a href="${app.path}">
<div>
<img class="svg-gray" src="${app.icon}">
${app.name}
</div>
</a>
</div>
</li>
`;
});
if (info.meta && info.meta.server && info.meta.server.host) {
$("kvmd-meta-server-host").innerHTML = info.meta.server.host;
document.title = "Pi-KVM Index: " + info.meta.server.host;
} else {
$("kvmd-meta-server-host").innerHTML = "";
document.title = "Pi-KVM Index";
}
} else {
setTimeout(__loadKvmdInfo, 1000);
}
}
});
}
|