-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The package manager for Linux</title>
<style>
#forkongithub a{background:white;color:#000;text-decoration:none;font-family:arial,sans-serif;text-align:center;font-weight:bold;padding:5px 40px;font-size:1rem;line-height:2rem;position:relative;transition:0.5s;}#forkongithub a:hover{background:black;color:#fff;}#forkongithub a::before,#forkongithub a::after{content:"";width:100%;display:block;position:absolute;top:1px;left:0;height:1px;background:#000;}#forkongithub a::after{bottom:1px;top:auto;}@media screen and (min-width:800px){#forkongithub{position:fixed;display:block;top:0;right:0;width:200px;overflow:hidden;height:200px;z-index:9999;}#forkongithub a{width:200px;position:absolute;top:60px;right:-60px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);box-shadow:4px 4px 10px rgba(0,0,0,0.8);}}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script>
<script>
$( function() {
$( document ).tooltip();
} );
</script>
<style>
label {
display: inline-block;
width: 5em;
}
</style>
</head>
<body>
<span id="forkongithub"><a href="https://github.com/EatInstall/Eat">Fork me on GitHub</a></span>
<h1>Eat - The Open-Source Package Manager for Linux</h1>
<p>Eat is an open-source <a href="https://en.wikipedia.org/wiki/Package_manager">Package Manager</a> for
Linux, a clone of <a href="https://unix.org">Unix</a>.</p>
<p>Eat provides <em>many</em> ways to install programs without modifiying your <code>PATH</code>.
Instead, it just creates Bash aliases. You can modify your shell's init script to add the program.</p>
<p>To install Eat, just run this command in your Linux command-line:</p>
<pre>
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Tyler887/eat/main/inst-script.sh -#)"
</pre>
<small><p><em>This program is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.txt" title="GNU General Public License"><img src="https://www.gnu.org/graphics/gplv3-88x31.png"></img></a> or later. Content on this site is licensed under <a href="https://www.gnu.org/licenses/fdl-1.3.txt">GFDL 1.3+</a>.</em></p></small>
</body>
</html>