-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.config.conf
325 lines (310 loc) · 8.04 KB
/
sample.config.conf
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
[global]
# display extra verbose output when running fetch
# options: on, off
# default: off
verbose="off"
# system directory where fetch distribution and extra files live
# default: /usr/share/fetch
data_dir="/usr/share/fetch"
# globally set shorthand on all fields
# options: off, on
# default: off
short="off"
# controls info display
# space delimited list of detections to run and display
# detections: userinfo, distro, kernel, uptime, shell, packages
# cpu, memory
# default: userinfo distro kernel uptime shell packages cpu memory
info="userinfo distro kernel uptime shell packages cpu memory"
[text]
# control whether text information is displayed
# options: on, off
# default: on
display="on"
bold="on"
underline_enabled="on"
underline_character="-"
# controls if output is colored
# options: on, off
# default: on
color="on"
# character that displays between info title and info data
# default: :
# example: "DE : GNOME"
info_separator=":"
# ASCII Logo Display Options
[ascii]
# control whether ASCII logo is displayed
# options: on, off
# default: on
display="on"
# select which distro logo to display
# options: auto, distroname
# default: auto
# (auto pulls the ascii logo from the detected os/distribution)
# (for full list of distribution names, please refer to man fetch)
ascii_distro="auto"
# select colorization of ascii logo
# options: distro, random, 'c1 c2 c3 c4 c5 c6'
# default: distro
# ( fill this variable with up to 6 color names or 256 color number
# definitions. note that only the number of color definitions up to the
# number enabled by default in the ascii logo will be displayed.)
colors="distro"
# display ascii logo with bold text
# options: on, off
# default: on
ascii_bold="on"
# column gap between end of logo, horizontally, and start of information
# options: N (where N is any number)
# default: 2
# (note that the higher N is, the more width will be required by your terminal)
gap="2"
# User@Host Display Options
[userinfo]
# display userinfo (ie kittykatt@kelemvor): controls entire userinfo line
# options: on, off
# default: on
display="on"
# display hostname (ie *@kelemvor)
# options: on, off
# default: on
display_hostname="on"
# display username (ie kittykatt@*)
# options: on, off
# default: on
display_user="on"
# underline user@host line
# options: on, off
# default: on
underline="on"
# Distribution Informat ionDisplay Options
[distro]
# display distribution name (ie Ubuntu)
# options: on, off
# default: on
display="on"
# shorthand for distro
# options: auto, on, off, codename, version
# default: auto (off)
# examples:
# on : Ubuntu
# version : Ubuntu 20.10
# codename : Ubuntu (Groovy Gorilla)
# off : Ubuntu 20.10 (Groovy Gorilla)
short="auto"
# display OS architecture (ie x86_64)
# options: on, off
# default: on
os_arch="on"
# subtitle for distro line
# default: OS
# to turn off subtitle display, set this variable to empty
subtitle="OS"
# Kernel Information Display Options
[kernel]
# display kernel (ie Linux 5.8.0-1023-gc)
# options: on, off
# default: on
display="on"
# kernel shorthand
# options: auto, on, off
# default: auto (off)
# examples:
# on : 5.8.0-1023-gcp
# off : Linux 5.8.0-1023-gcp
short="auto"
# subtitle for kernel line
# default: Kernel
# to turn off subtitle display, set this variable to empty
subtitle="Kernel"
# Uptime Information Display Options
[uptime]
# display uptime information (ie 2 days, 10 hours, 3 minutes)
# options: on, off
# default: on
display="on"
# uptime shorthand
# options: auto, on, off, tiny
# default: auto (off)
# examples:
# on : 2 days, 10 hours, 3 mins
# off : 2 days, 10 hours, 3 minutes
# tiny : 2d 10h 3m
short="auto"
# subtitle for uptime line
# default: Uptime
# to turn off subtitle display, set this variable to empty
subtitle="Uptime"
# Installed Packages Information Display Options
[packages]
# display installed packages (ie 384)
# options: on, off
# default: on
display="on"
# display packages from different package managers
# options: off, on, split
# default: off
# examples:
# off : 373
# on : 384 (apt, snap, flatpak)
# split : 373 (apt), 7 (snap), 3 (flatpak)
managers="split"
# subtitle for packages line
# default: Packages
# to turn off subtitle display, set this variable to empty
subtitle="Packages"
# Current Shell Information Display Options
[shell]
# display current shell (ie bash)
# options: on, off
# default: on
display="on"
# dispaly current shell version info
# options: on, off
# default: on
# examples:
# on : bash 5.0.17
# off : bash
version="on"
# display full path of shell in use (ie /bin/bash)
# options: on, off
# default: off
path="off"
# subtitle for shell line
# default: Shell
# to turn off subtitle display, set this variable to empty
subtitle="Shell"
# CPU Information Display Options
[cpu]
# display detected CPU (ie Intel Xeon E5-2650 v2 (16) @ 2.6GHz)
# options: on, off
# default: on
display="on"
# display brand of detected cpu
# options: on, off
# default: on
# examples:
# on : Intel Xeon E5-2650 v2
# off : Xeon E5-2650 v2
brand="on"
# display speed of detected cpu
# options: on, off
# default: on
# examples:
# on : Xeon E5-2650 v2 @ 2.6GHz
# off : Xeon E5-2650 v2
speed="on"
# display number of logical cores
# options: on, off
# default: on
# examples:
# on : Xeon E5-2650 v2 (16)
# off : Xeon E5-2650 v2
cores="on"
# display cpu temp
# options: on, F, C
# default: off
# examples:
# C : Intel Xeon E5-2650 v2 (16) @ 2.6GHz [27.2°C]
# F : Intel Xeon E5-2650 v2 (16) @ 2.6GHz [82.0°F]
# off : Intel Xeon E5-2650 v2 (16) @ 2.6GHz
temp="off"
# subtitle for cpu line
# default: CPU
# to turn off subtitle display, set this variable to empty
subtitle="CPU"
# Memory Information Display Options
[memory]
# display detected memory usage (5439MiB / 7653MiB (71%))
# options: on, off
# default: on
display="on"
# display percent of memory used
# options: on, off
# default: on
# examples:
# on : 5439MiB / 7653MiB (71%)
# off : 5439MiB / 7653MiB
percent="on"
# subtitle for memory line
# default: Memory
# to turn off subtitle display, set this variable to empty
subtitle="Memory"
# GPU Information Display Options
[gpu]
# display detected GPU (ie Intel HD Graphics 520)
# options: on, off
# default: off
display="off"
# display brand of detected GPU
# options: on, off
# default: off
# examples:
# on : Intel HD Graphics 520
# off : HD Graphics 520
brand="on"
# Resolution Information Display Options
[resolution]
# display current detected resolution (ie 2560x1440, 1920x1080)
# options: on, off
# default: on
display="on"
# select how resolution is displayed with multiple displays
# options: combined, separate
# default: separate
# examples:
# combined : 4480x2520
# separate : 2560x1440, 1920x1080
multiple="separate"
# Desktop Environment Information Display Options
[de]
# display current detected desktop environment (ie GNOME 3.34.1)
# options: on, off
# default: on
display="on"
# display version info about detected desktop environment
# options: on, off
# default: on
# examples:
# on : GNOME 3.34.1
# off : GNOME
version_info="on"
# Window Manager Information Display Options
[wm]
# display current detected window manager (ie Mutter 3.34.1)
# options: on, off
# default: on
display="on"
# display version info about detected window manager, if available
# options: on, off
# default: on
# examples:
# on : Mutter 3.34.1
# off : Mutter
version_info="on"
# Theme Information Display Options
[theme]
# display current detected theme (this controls displaying any theme info)
# options: on, off
# default: on
display="on"
# display current GTK3 theme, icons, and font
# options: on, off
# default: on
display_gtk3="on"
# display current GTK2 theme, icons, and font
# options: on, off
# default: on
display_gtk2="on"
# display current window manager theme
# options: on, off
# default: on
display_wm="on"
# shorthand for GTK 2 and 3 theme info
# options: on, off
# default: off
# examples:
# on : Yaru, Adwaita
# off : Yaru [GTK3], Adwaita [GTK2]
gtk_short="off"