-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
153 lines (128 loc) · 3.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OS/1337</title>
<style>
@font-face {
font-family: 'ubuntu_monoregular';
src: url('/fonts/ubuntumono-regular-webfont.woff2') format('woff2'),
url('/fonts/ubuntumono-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
html {
margin: 0;
padding: 0;
font-size: 14px;
}
body {
font-family: 'ubuntu_monoregular', monospace;
color: #00ff00;
background-color: #000000;
height: 100%;
margin: 0;
font-size: 100%;
white-space: nowrap;
}
.content {
padding: 3em 1em;
margin-bottom: 3em;
margin: 0 auto;
width: 24em;
}
h1 {
color: #ff8000;
font-size: 3rem;
margin-top: 0;
margin-bottom: 0;
}
h2 {
font-size: 1rem;
margin-top: .5em;
margin-bottom: 2em;
}
h3, a, .amber {
color: #ff8000;
}
h4 {
margin-top: 2em;
margin-bottom: .5em;
}
ul {
list-style-type: none;
padding-left: 1em;
}
ul > li:before {
content: "- ";
}
.contact {
margin-top: 2em;
}
.contact ul {
list-style-type: none;
padding-left: 0;
}
.contact ul > li:before {
content: "";
}
address {
font-style: normal;
}
</style>
</head>
<body>
<div class="content">
<img width="378" height="378";" alt="OS/1337 Logo, typed _OS/1337 with _OS/ in amber and 1337 in green" src="/images/OS1337_logo.svg">
<h2>a CLI-oriented minimal toybox/Linux + musl distribtion</h2>
<hl> </hl>
<section class="Features">
<h3>Highly Compatible</h3>
<ul>
<h3><li><a href="https://kernel.org/">Linux</a> Kernel</h3></li>
<li>Should be able to run on everything</li>
</ul>
<h3><a href="http://landley.net/toybox">Toybox</a> Userland</h3>
<ul>
<li>Efficient, Sleek and Fast</li>
<li>Provides all the necessary basics</li>
</ul>
<h3><a href="https://musl.libc.org/">musl</a> C-Library</h3>
<ul>
<li>Compact and Stable</li>
<li>Doesn't constantly <a href="https://lkml.org/lkml/2012/12/23/75">brick Userspace</a> unlike Glibc</li>
</ul>
<h3><a href="https://matt.ucc.asn.au/dropbear/dropbear.html">Dropbear</a> SSH Client</h3>
<ul>
<li>A sleek and efficient way to connect to your more powerful systems, ready to go.</li>
<li>"Make Terminals Great Again!"</li>
</ul>
<h3>Additional Tools</h3>
<ul>
<li>To make it a fully useable CLI-based Desktop OS</li>
<li>With Quality chosen above Quantity!</li>
</ul>
<h3>Easily Extensible</h3>
<ul>
<li>Just drop in your Linux binaries [compiled against musl] into the filesystem</li>
<li>Trivially expand your minimalist CLI desktop to your needs</li>
</ul>
</section>
<section class="contact">
<ul>
<li>Website: <a href="https://os1337.com/">os1337.com</a></li>
<li>GitHub: <a href="https://github.com/OS-1337/OS1337">https://github.com/OS-1337</a></li>
</ul>
</section>
<section class="legal-stuff">
<h4>Imprint</h4>
<legal-info>
<li>Created by: <a href="http://karhan.guru/">karhan.guru</a></li>
</legal-info>
</section>
<section class="social">
<li>Fediverse / <a rel="me" href="https://infosec.space/@OS1337">Mastodon</a></li>
</div>
</body>
</html>