-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathsimplefetch.conf
395 lines (331 loc) · 7.89 KB
/
simplefetch.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
# Source: https://github.com/Chick2D/neofetch-themes/
# Made by: https://github.com/gosxrgxx (simpleFetch)
print_info() {
info "$(color 4) " distro
info "$(color 7) " kernel
info "$(color 2) " packages
info "$(color 3) " shell
info "$(color 15) " term
info "$(color 13) " wm
info "$(color 14) " resolution
info cols
}
# Kernel
# Shorten the output of the kernel function.
#
# Default: 'on'
# Values: 'on', 'off'
# Flag: --kernel_shorthand
# Supports: Everything except *BSDs (except PacBSD and PC-BSD)
#
# Example:
# on: '4.8.9-1-ARCH'
# off: 'Linux 4.8.9-1-ARCH'
kernel_shorthand="on"
# Distro
# Shorten the output of the distro function
#
# Default: 'off'
# Values: 'on', 'tiny', 'off'
# Flag: --distro_shorthand
# Supports: Everything except Windows and Haiku
distro_shorthand="tiny"
# Show/Hide OS Architecture.
# Show 'x86_64', 'x86' and etc in 'Distro:' output.
#
# Default: 'on'
# Values: 'on', 'off'
# Flag: --os_arch
#
# Example:
# on: 'Arch Linux x86_64'
# off: 'Arch Linux'
os_arch="off"
# Packages
# Show/Hide Package Manager names.
#
# Default: 'tiny'
# Values: 'on', 'tiny' 'off'
# Flag: --package_managers
#
# Example:
# on: '998 (pacman), 8 (flatpak), 4 (snap)'
# tiny: '908 (pacman, flatpak, snap)'
# off: '908'
package_managers="on"
# Shell
# Show the path to $SHELL
#
# Default: 'off'
# Values: 'on', 'off'
# Flag: --shell_path
#
# Example:
# on: '/bin/bash'
# off: 'bash'
shell_path="off"
# Show $SHELL version
#
# Default: 'on'
# Values: 'on', 'off'
# Flag: --shell_version
#
# Example:
# on: 'bash 4.4.5'
# off: 'bash'
shell_version="on"
# Resolution
# Display refresh rate next to each monitor
# Default: 'off'
# Values: 'on', 'off'
# Flag: --refresh_rate
# Supports: Doesn't work on Windows.
#
# Example:
# on: '1920x1080 @ 60Hz'
# off: '1920x1080'
refresh_rate="off"
# Text Colors
# Default: "distro"
# Values: "distro", "num" "num" "num" "num" "num" "num"
# Flag: --colors
#
# Each number represents a different part of the text in
# this order: "title", "@", "underline", "subtitle", "colon", "info"
#
# Example:
# colors=(distro) - Text is colored based on Distro colors.
# colors=(4 6 1 8 8 6) - Text is colored in the order above.
colors=(4 6 1 8 8 7)
# Text Options
# Toggle bold text
#
# Default: "on"
# Values: "on", "off"
# Flag: --bold
bold="on"
# Enable/Disable Underline
#
# Default: "on"
# Values: "on", "off"
# Flag: --underline
underline_enabled="on"
# Underline character
#
# Default: "-"
# Values: "string"
# Flag: --underline_char
underline_char="─"
# Info Separator
# Replace the default separator with the specified string.
#
# Default: ":"
# Flag: --separator
#
# Example:
# separator="->": "Shell-> bash"
# separator=" =": "WM = dwm"
separator=" ▐ "
# Color Blocks
# Color block range
# The range of colors to print.
#
# Default: "0", "15"
# Values: "num"
# Flag: --block_range
#
# Example:
#
# Display colors 0-7 in the blocks. (8 colors)
# neofetch --block_range 0 7
#
# Display colors 0-15 in the blocks. (16 colors)
# neofetch --block_range 0 15
block_range=(0 15)
# Toggle color blocks
#
# Default: "on"
# Values: "on", "off"
# Flag: --color_blocks
color_blocks="on"
# Color block width in spaces
#
# Default: "3"
# Values: "num"
# Flag: --block_width
block_width=3
# Color block height in lines
#
# Default: "1"
# Values: "num"
# Flag: --block_height
block_height=1
# Progress Bars
# Bar characters
#
# Default: "-", "="
# Values: "string", "string"
# Flag: --bar_char
#
# Example:
# neofetch --bar_char "elapsed" "total"
# neofetch --bar_char "-" "="
bar_char_elapsed="-"
bar_char_total="="
# Toggle Bar border
#
# Default: "on"
# Values: "on", "off"
# Flag: --bar_border
bar_border="on"
# Progress bar length in spaces
# Number of chars long to make the progress bars.
#
# Default: "15"
# Values: "num"
# Flag: --bar_length
bar_length=15
# Progress bar colors
# When set to distro, uses your distro"s logo colors.
#
# Default: "distro", "distro"
# Values: "distro", "num"
# Flag: --bar_colors
#
# Example:
# neofetch --bar_colors 3 4
# neofetch --bar_colors distro 5
bar_color_elapsed="distro"
bar_color_total="distro"
# Info display
# Display a bar with the info.
#
# Default: "off"
# Values: "bar", "infobar", "barinfo", "off"
# Flags: --cpu_display
# --memory_display
# --battery_display
# --disk_display
#
# Example:
# bar: "[---=======]"
# infobar: "info [---=======]"
# barinfo: "[---=======] info"
# off: "info"
cpu_display="off"
memory_display="off"
battery_display="off"
disk_display="off"
# Backend Settings
# Image backend.
#
# Default: "ascii"
# Values: "ascii", "caca", "chafa", "jp2a", "iterm2", "off",
# "termpix", "pixterm", "tycat", "w3m", "kitty", "ueberzug"
# Flag: --backend
image_backend="kitty"
# Image Source
#
# Which image or ascii file to display.
#
# Default: "auto"
# Values: "auto", "ascii", "wallpaper", "/path/to/img", "/path/to/ascii", "/path/to/dir/"
# "command output (neofetch --ascii "$(fortune | cowsay -W 30)")"
# Flag: --source
#
# NOTE: "auto" will pick the best image source for whatever image backend is used.
# In ascii mode, distro ascii art will be used and in an image mode, your
# wallpaper will be used.
# image_source="/home/barbarossa/.config/neofetch/dna_ascii"
# Ascii Options
# Ascii distro
# Which distro"s ascii art to display.
#
# Default: "auto"
# Values: "auto", "distro_name"
# Flag: --ascii_distro
#
# NOTE: Arch and Ubuntu have "old" logo variants.
# Change this to "arch_old" or "ubuntu_old" to use the old logos.
# NOTE: Ubuntu has flavor variants.
# Change this to "Lubuntu", "Xubuntu", "Ubuntu-GNOME" or "Ubuntu-Budgie" to use the flavors.
# NOTE: Arch, Crux and Gentoo have a smaller logo variant.
# Change this to "arch_small", "crux_small" or "gentoo_small" to use the small logos.
printf "\n"
ascii_distro="arch_small"
# Ascii Colors
#
# Default: "distro"
# Values: "distro", "num" "num" "num" "num" "num" "num"
# Flag: --ascii_colors
#
# Example:
# ascii_colors=(distro) - Ascii is colored based on Distro colors.
# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors.
ascii_colors=(6 6 4 8 8 6)
# Bold ascii logo
# Whether or not to bold the ascii logo.
#
# Default: "on"
# Values: "on", "off"
# Flag: --ascii_bold
ascii_bold="on"
# Image Options
# Image loop
# Setting this to on will make neofetch redraw the image constantly until
# Ctrl+C is pressed. This fixes display issues in some terminal emulators.
#
# Default: "off"
# Values: "on", "off"
# Flag: --loop
image_loop="off"
# Thumbnail directory
#
# Default: "~/.cache/thumbnails/neofetch"
# Values: "dir"
thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch"
# Crop mode
#
# Default: "normal"
# Values: "normal", "fit", "fill"
# Flag: --crop_mode
#
# See this wiki page to learn about the fit and fill options.
# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F
crop_mode="fill"
# Crop offset
# Note: Only affects "normal" crop mode.
#
# Default: "center"
# Values: "northwest", "north", "northeast", "west", "center"
# "east", "southwest", "south", "southeast"
# Flag: --crop_offset
crop_offset="center"
# Image size
# The image is half the terminal width by default.
#
# Default: "auto"
# Values: "auto", "00px", "00%", "none"
# Flags: --image_size
# --size
image_size="440px"
# Gap between image and text
gap=4
# Image offsets
# Only works with the w3m backend.
yoffset=0
xoffset=0
# Image background color
# Only works with the w3m backend.
#
# Default: "
# Values: "color", "blue"
# Flag: --bg_color
background_color=
# Misc Options
# Stdout mode
# Turn off all colors and disables image backend (ASCII/Image).
# Useful for piping into another command.
# Default: "off"
# Values: "on", "off"
stdout="off"