blob: 3392cba690dcbe02ff409a0d67ecd78602d3a799 (
plain)
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
|
.TH FETCHA 1 fetcha\-VERSION
.
.SH NAME
fetcha \- neofetch-like program, but faster and lighter
.
.SH SYNOPSIS
.B fetcha
.
.SH DESCRIPTION
Fetcha is a CLI system information program written in C
following the suckless philosophy.
It displays an ASCII image along with minimal system information.
.
.SH FILES
.TP
.I config.def.h
Default configuration file (do not change it!).
.TP
.I config.h
Configuration file, requires reconmpilation after modification.
.TP
.I docs/
.br
Documentation directory.
.TP
.I fetcha.c
Main code file. Here implement most logic of the program.
.TP
.I modules.c
Modules code file. Here implement basic modules.
You can write your own (see \fBfetcha-modules\fR(5)
.TP
.I modules.h
Modules header file. Here defined all modules.
.TP
.I license.txt
License file.
.TP
.I Makefile
Build file used to compile and install fetcha.
Supports targets for building, cleaning, and instalation.
.
.SH CUSTOMIZATION
Fetcha can be customized by creating a custom \fIconfig.h\fR and recompiling
the source code.
You can also write your own modules in \fImodules.c\fR and define them
in \fImodules.h\fR.
.PP
NOTE: See \fBfetcha-modules\fR(5) for a module creation tutorial
and \fBfetcha-config\fR(5) for a configuration tutorial
.SH SEE ALSO
\fBfetcha-modules\fR(5), \fBfetcha-config\fR(5)
|