-
Notifications
You must be signed in to change notification settings - Fork 1
/
linux.html
81 lines (75 loc) · 3 KB
/
linux.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
<html lang="en"><head>
<title>FetchCord</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta content="text/html" charset="UTF-8" http-equiv="Content-Type">
<meta content="UTF-8" http-equiv="encoding">
<link type="text/css" rel="stylesheet" href="styles.css">
<script type="code/javascript" src="script.js"></script>
<link rel="icon" href="favicon.ico">
</head>
<body>
<div class="navbar">
<div class="navbuttons">
<a href="index.html">Home</a>
<div class="vl"></div>
<a href="about.html">About</a>
<div class="vl"></div>
<a href="credits.html">Credits</a>
<div class="vl"></div>
<a href="discord.html">Discord</a>
</div>
<div class="dropdown">
<button class="dropbtn" style=" color: #5c3de3;
text-shadow: 0px 0px 19px #8065F4, 0px -4px 0px rgba(0, 0, 0, 0.25);
">Installation v</button>
<div class="dropdown-content">
<div class="on"><a href="linux.html">Linux</a></div>
<a href="macos.html">MacOS</a>
<a href="windows.html">Windows</a>
</div>
</div></div>
<header class="header">
<div class="logo">
<img alt="Homepage Header" src="fetchcord.png" style="height: 151px;">
</div>
<div class="headertxt">
<h1>FetchCord</h1>
<h2>Installing on (GNU/)Linux
</h2>
</div>
</header>
<div class="textbg"><p>NOTE: You need neofetch to be also installed for this to work.</p>
<br>
<h2>
> Via AUR
</h2>
<br>
<p>On Arch Linux for the git testing version (the less stable version): fetchcord-testing</p>
<p>Github version (synced with master): fetchcord</p>
<p>Historically the stabler release was the one from pip, but now master will have only the stable releases.</p>
<br>
<h2>
> Via Snap
</h2>
<br>
<p>On systems with snap installed, you can run <code>sudo snap install fetchcord --classic</code> to install fetchcord.</p>
<p>Note that like the AUR version, this version is directly from master, for the stable release use pip
</p>
<br>
<h2>
> Via pip
</h2>
<br>
<p>To Install fetchcord via pip you can run <code>pip3 install fetchcord</code></p>
<p>If you want to remove FetchCord you can run <code>pip3 uninstall fetchcord</code></p>
<br>
<h2>
> Run
</h2>
<br>
<p>Once installed, simply run <code>fetchcord</code>. The program is also daemonizable, meaning you can start it on boot using any method you prefer.</p>
<p>If you get <code>fetchcord: command not found</code>, add export <code>PATH="$HOME/.local/bin:$PATH"</code> to your bashrc, or just run <code>python3 -m fetchcord.</code>
</p><p>Optionally, for systemd users there is a user-side <code>fetchcord.service</code> in this repo that can be installed to <code>~/.local/share/systemd/user/</code>, started and enabled on boot using <code>systemctl --user enable --now fetchcord</code>.
</p><p></p>
</div>
</body></html>