-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (80 loc) · 2.77 KB
/
index.html
File metadata and controls
88 lines (80 loc) · 2.77 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>The PyFetch Website</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<h1>PyFetch</h1>
<nav>
<a href="#about">About</a>
<a href="#features">Features</a>
<a href="#install">Install</a>
<a href="#usage">Usage</a>
<a href="#github">GitHub</a>
<a href="#discord">Discord</a>
<a href="#preview">Preview</a>
</nav>
</header>
<main>
<p>THIS WEBSITE WILL BE PRESERVED AS IS. THE OFFICIAL WEBSITE HAS BEEN MOVED TO <a href="https://pyfetch.github.io" target="_blank">https://pyfetch.github.io</a>.</p>
<section id="about">
<h2>About PyFetch</h2>
<p>PyFetch is a Python-based Neofetch alternative that shows system information. Not to be confused with the other PyFetch project which allows HTTP requests.</p>
<img src="assets/pyfetch-demo.gif" alt="PyFetch demo" />
</section>
<section id="features">
<h2>Features</h2>
<ul>
<li>Blazing Fast</li>
<li>Your Linux Distro name in ASCII Art (Or what we call it, Banners.)</li>
<li>Editable config file</li>
<li>Plugin support</li>
</ul>
</section>
<section id="install">
<h2>Installation</h2>
For PyFetch AUR (v1.0.1):
<pre><code>yay -S pyfetch</code></pre>
For the latest version of PyFetch:
<a href="https://github.com/linuxaddict124/pyfetch/releases">Click here!</a>
</section>
<section id="preview">
<h2>Preview</h2>
<pre><code> ____ _____ _ _
| _ \ _ _| ___|__| |_ ___| |__
| |_) | | | | |_ / _ \ __/ __| '_ \
| __/| |_| | _| __/ || (__| | | |
|_| \__, |_| \___|\__\___|_| |_|
|___/
Distro: Distro Name Here
Hostname: linux
User: linuxaddict124
Kernel: Linux 6.17.2
Packages: UNKNOWN
PyFetch Version: 1.1.0
CPU: x86_64
RAM: UNKNOWN</code></pre>
</section>
<section id="usage">
<h2>Usage</h2>
<p>Run <code>pyfetch</code> in your terminal to display system information. Edit <code>~/.config/pyfetch/pyfetch.conf</code> to configure PyFetch.</p>
</section>
<section id="github">
<h2>GitHub</h2>
<p>Check out the project on <a href="https://github.com/linuxaddict124/pyfetch" target="_blank">GitHub</a></p>
</section>
<section id="discord">
<h2>Discord</h2>
<p>There is a discord server for the PyFetch Community but the only thing there will be on it is announcements. <a href="https://discord.gg/n6Ufmnc8Yd" target="_blank">Join now!</a></p>
</section>
</main>
<footer>
<p>Created by LinuxAddict124 | MIT License</p>
</footer>
</body>
</html>