-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (56 loc) · 1.98 KB
/
index.html
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>The Terminal</title>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/js/jquery.min.js"></script>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/js/underscore.js"></script>
<script>
//everybody needs random numbers
var rand = function(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
};
</script>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/js/baseprocess.js"></script>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/plugins/processes.js"></script>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/plugins/thewave.js"></script>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/plugins/simpleline.js"></script>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/plugins/simplecounter.js"></script>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/plugins/loadingbar.js"></script>
<script src="https://raw.github.com/lunow/terminalscreensaver/master/js/terminal.js"></script>
<script>
//now we have the terminal and a few plugins, so initialise it:
var app;
jQuery(function($) {
app = Terminal();
app.addPlugin(SimpleLine, 20);
app.addPlugin(SimpleCounter, 8);
app.addPlugin(MavenProcess, 6);
app.addPlugin(GitProcess, 10);
app.addPlugin(TestProcess, 8);
app.addPlugin(LoadingBar, 7);
app.addPlugin(LsProcess, 5);
app.addPlugin(TheWave, 5);
app.start();
});
</script>
<link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
<style>
html, body {
margin:0;
padding:0;
font-family:'Ubuntu Mono', "Courier New", Courier, monospace;
font-size:12px;
line-height:100%;
background:#fff;
color:#000;
}
.ln {
display:block;
padding:2px;
}
</style>
</head>
<body>
</body>
</html>