mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
c66ae7b2e4
Launch an Xspice and run: echo -ne "\033]844;127.0.0.1;9876\007" This will launch a SPiCE client connecting to 127.0.0.1:9876. Still need to add all the security stuff and generally be more defensive in the implementation.
18 lines
531 B
HTML
18 lines
531 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{ .title }}</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
<link rel="icon" type="image/png" href="favicon.png">
|
|
<link rel="stylesheet" href="./css/index.css" />
|
|
<link rel="stylesheet" href="./css/xterm.css" />
|
|
<link rel="stylesheet" href="./css/xterm_customize.css" />
|
|
</head>
|
|
<body>
|
|
<div id="terminal"></div>
|
|
<script src="./auth_token.js"></script>
|
|
<script src="./config.js"></script>
|
|
<script src="./js/gotty.js"></script>
|
|
</body>
|
|
</html>
|