aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 529f6666ba4374738a10670d17d202b714abc455 (plain) (blame)
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
# cfetch
## Idea
- fastfetch / commiefetch in C
- with emphasis on commiefetch, i want communism stuff but in C !

## roadmap
- [x] 0.1.0: get some basic system information on the screen
- [ ] 0.1.1: print out the ascii art with systeminformation
- [ ] 0.1.2+: some more systeminformation plus print ascii art left of sys information

## Building / Installation

### Dependencies
- GCC compiler
- GNU Make
- Standard C libraries

### make commands

- git clone this project
  - `git clone https://codeberg.org/Anser/cfetch.git`
- `make` for local install (e.g. binary will be placed inside the project folder)
- `sudo/doas make install` for systemwide install (requieres root privileges)
- `make clean` for local removal
- `sudo/doas make uninstall` for systemwide uninstallation

### Build localy

```bash
git clone https://codeberg.org/Anser/cfetch.git && \
cd cfetch && \
make
```

### Build global

```bash
git clone https://codeberg.org/Anser/cfetch.git && \
cd cfetch && \
sudo make install
```

## Usage

Run executable:
```
cfetch
```

## Features - not much !

| Feature | Linux |
|---------|-------|
| OS Info | OK    |
| Kernel  | todo  |
| CPU     | OK    |
| Memory  | OK    |
| username  | todo    |
| ascii_art  | todo    |


## Reference
- [Commiefetch](https://github.com/amalxloop/commiefetch)
- [Fastfetch](https://github.com/fastfetch-cli/fastfetch)