You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/wiki/Installation.md
+17-11Lines changed: 17 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@ This wiki page will guide you through getting onefetch working on your system.
5
5
# Table of Contents
6
6
7
7
-[Universal Install](#universal-install)
8
+
-[Build from source](#build-from-source)
8
9
-[Cargo](#cargo)
9
10
-[Snap](#snap)
10
-
-[Build from source](#build-from-source)
11
11
-[OS/Distro Packages](#osdistro-packages)
12
12
-[Alpine Linux](#alpine-linux)
13
13
-[Arch](#arch)
@@ -31,10 +31,26 @@ This wiki page will guide you through getting onefetch working on your system.
31
31
32
32
If your architecture is supported by the pre-built binaries, you can download them from the [releases page](https://github.com/o2sh/onefetch/releases/latest).
33
33
34
+
## Build from source
35
+
36
+
First, install `rustup` to get the `rust` compiler installed on your system (using the recommended `curl https://sh.rustup.rs -sSf | sh -s` installation method) and then
37
+
38
+
> [!IMPORTANT]
39
+
> Ensure [CMake](https://cmake.org/download/) is installed.
40
+
41
+
```
42
+
git clone https://github.com/o2sh/onefetch
43
+
cd onefetch
44
+
make install
45
+
```
46
+
34
47
## Cargo
35
48
36
49
First, install `rustup` to get the `rust` compiler installed on your system (using the recommended `curl https://sh.rustup.rs -sSf | sh -s` installation method) and then
37
50
51
+
> [!IMPORTANT]
52
+
> Ensure [CMake](https://cmake.org/download/) is installed.
53
+
38
54
```
39
55
cargo install onefetch
40
56
```
@@ -57,16 +73,6 @@ snap install onefetch
57
73
58
74
The stable version will be installed for you automatically.
59
75
60
-
## Build from source
61
-
62
-
First, install `rustup` to get the `rust` compiler installed on your system (using the recommended `curl https://sh.rustup.rs -sSf | sh -s` installation method) and then
0 commit comments