a96725a52fa49e1fd3d73ef7749b2cbb35f658f1
[dotfiles/.git] / .config / neofetch / config.conf
1 # See this wiki page for more info:
2 # https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
3 print_info() {
4     info title
5     info underline
6
7     info "OS" distro
8     info "Host" model
9     info "Kernel" kernel
10     info "Uptime" uptime
11     info "Packages" packages
12     info "Shell" shell
13     info "Resolution" resolution
14     info "DE" de
15     info "WM" wm
16     info "WM Theme" wm_theme
17     info "Theme" theme
18     info "Icons" icons
19     info "Terminal" term
20     info "Terminal Font" term_font
21     info "CPU" cpu
22     info "GPU" gpu
23     info "Memory" memory
24
25     # info "GPU Driver" gpu_driver  # Linux/macOS only
26     # info "CPU Usage" cpu_usage
27     # info "Disk" disk
28     # info "Battery" battery
29     # info "Font" font
30     # info "Song" song
31     # [[ "$player" ]] && prin "Music Player" "$player"
32     # info "Local IP" local_ip
33     # info "Public IP" public_ip
34     # info "Users" users
35     # info "Locale" locale  # This only works on glibc systems.
36
37     info cols
38 }
39
40 # Title
41
42
43 # Hide/Show Fully qualified domain name.
44 #
45 # Default:  'off'
46 # Values:   'on', 'off'
47 # Flag:     --title_fqdn
48 title_fqdn="off"
49
50
51 # Kernel
52
53
54 # Shorten the output of the kernel function.
55 #
56 # Default:  'on'
57 # Values:   'on', 'off'
58 # Flag:     --kernel_shorthand
59 # Supports: Everything except *BSDs (except PacBSD and PC-BSD)
60 #
61 # Example:
62 # on:  '4.8.9-1-ARCH'
63 # off: 'Linux 4.8.9-1-ARCH'
64 kernel_shorthand="on"
65
66
67 # Distro
68
69
70 # Shorten the output of the distro function
71 #
72 # Default:  'off'
73 # Values:   'on', 'tiny', 'off'
74 # Flag:     --distro_shorthand
75 # Supports: Everything except Windows and Haiku
76 distro_shorthand="off"
77
78 # Show/Hide OS Architecture.
79 # Show 'x86_64', 'x86' and etc in 'Distro:' output.
80 #
81 # Default: 'on'
82 # Values:  'on', 'off'
83 # Flag:    --os_arch
84 #
85 # Example:
86 # on:  'Arch Linux x86_64'
87 # off: 'Arch Linux'
88 os_arch="on"
89
90
91 # Uptime
92
93
94 # Shorten the output of the uptime function
95 #
96 # Default: 'on'
97 # Values:  'on', 'tiny', 'off'
98 # Flag:    --uptime_shorthand
99 #
100 # Example:
101 # on:   '2 days, 10 hours, 3 mins'
102 # tiny: '2d 10h 3m'
103 # off:  '2 days, 10 hours, 3 minutes'
104 uptime_shorthand="on"
105
106
107 # Memory
108
109
110 # Show memory pecentage in output.
111 #
112 # Default: 'off'
113 # Values:  'on', 'off'
114 # Flag:    --memory_percent
115 #
116 # Example:
117 # on:   '1801MiB / 7881MiB (22%)'
118 # off:  '1801MiB / 7881MiB'
119 memory_percent="off"
120
121
122 # Packages
123
124
125 # Show/Hide Package Manager names.
126 #
127 # Default: 'tiny'
128 # Values:  'on', 'tiny' 'off'
129 # Flag:    --package_managers
130 #
131 # Example:
132 # on:   '998 (pacman), 8 (flatpak), 4 (snap)'
133 # tiny: '908 (pacman, flatpak, snap)'
134 # off:  '908'
135 package_managers="on"
136
137
138 # Shell
139
140
141 # Show the path to $SHELL
142 #
143 # Default: 'off'
144 # Values:  'on', 'off'
145 # Flag:    --shell_path
146 #
147 # Example:
148 # on:  '/bin/bash'
149 # off: 'bash'
150 shell_path="off"
151
152 # Show $SHELL version
153 #
154 # Default: 'on'
155 # Values:  'on', 'off'
156 # Flag:    --shell_version
157 #
158 # Example:
159 # on:  'bash 4.4.5'
160 # off: 'bash'
161 shell_version="on"
162
163
164 # CPU
165
166
167 # CPU speed type
168 #
169 # Default: 'bios_limit'
170 # Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'.
171 # Flag:    --speed_type
172 # Supports: Linux with 'cpufreq'
173 # NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value.
174 speed_type="bios_limit"
175
176 # CPU speed shorthand
177 #
178 # Default: 'off'
179 # Values: 'on', 'off'.
180 # Flag:    --speed_shorthand
181 # NOTE: This flag is not supported in systems with CPU speed less than 1 GHz
182 #
183 # Example:
184 # on:    'i7-6500U (4) @ 3.1GHz'
185 # off:   'i7-6500U (4) @ 3.100GHz'
186 speed_shorthand="off"
187
188 # Enable/Disable CPU brand in output.
189 #
190 # Default: 'on'
191 # Values:  'on', 'off'
192 # Flag:    --cpu_brand
193 #
194 # Example:
195 # on:   'Intel i7-6500U'
196 # off:  'i7-6500U (4)'
197 cpu_brand="on"
198
199 # CPU Speed
200 # Hide/Show CPU speed.
201 #
202 # Default: 'on'
203 # Values:  'on', 'off'
204 # Flag:    --cpu_speed
205 #
206 # Example:
207 # on:  'Intel i7-6500U (4) @ 3.1GHz'
208 # off: 'Intel i7-6500U (4)'
209 cpu_speed="on"
210
211 # CPU Cores
212 # Display CPU cores in output
213 #
214 # Default: 'logical'
215 # Values:  'logical', 'physical', 'off'
216 # Flag:    --cpu_cores
217 # Support: 'physical' doesn't work on BSD.
218 #
219 # Example:
220 # logical:  'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores)
221 # physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores)
222 # off:      'Intel i7-6500U @ 3.1GHz'
223 cpu_cores="logical"
224
225 # CPU Temperature
226 # Hide/Show CPU temperature.
227 # Note the temperature is added to the regular CPU function.
228 #
229 # Default: 'off'
230 # Values:  'C', 'F', 'off'
231 # Flag:    --cpu_temp
232 # Supports: Linux, BSD
233 # NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable
234 #       coretemp kernel module. This only supports newer Intel processors.
235 #
236 # Example:
237 # C:   'Intel i7-6500U (4) @ 3.1GHz [27.2°C]'
238 # F:   'Intel i7-6500U (4) @ 3.1GHz [82.0°F]'
239 # off: 'Intel i7-6500U (4) @ 3.1GHz'
240 cpu_temp="off"
241
242
243 # GPU
244
245
246 # Enable/Disable GPU Brand
247 #
248 # Default: 'on'
249 # Values:  'on', 'off'
250 # Flag:    --gpu_brand
251 #
252 # Example:
253 # on:  'AMD HD 7950'
254 # off: 'HD 7950'
255 gpu_brand="on"
256
257 # Which GPU to display
258 #
259 # Default: 'all'
260 # Values:  'all', 'dedicated', 'integrated'
261 # Flag:    --gpu_type
262 # Supports: Linux
263 #
264 # Example:
265 # all:
266 #   GPU1: AMD HD 7950
267 #   GPU2: Intel Integrated Graphics
268 #
269 # dedicated:
270 #   GPU1: AMD HD 7950
271 #
272 # integrated:
273 #   GPU1: Intel Integrated Graphics
274 gpu_type="all"
275
276
277 # Resolution
278
279
280 # Display refresh rate next to each monitor
281 # Default: 'off'
282 # Values:  'on', 'off'
283 # Flag:    --refresh_rate
284 # Supports: Doesn't work on Windows.
285 #
286 # Example:
287 # on:  '1920x1080 @ 60Hz'
288 # off: '1920x1080'
289 refresh_rate="off"
290
291
292 # Gtk Theme / Icons / Font
293
294
295 # Shorten output of GTK Theme / Icons / Font
296 #
297 # Default: 'off'
298 # Values:  'on', 'off'
299 # Flag:    --gtk_shorthand
300 #
301 # Example:
302 # on:  'Numix, Adwaita'
303 # off: 'Numix [GTK2], Adwaita [GTK3]'
304 gtk_shorthand="off"
305
306
307 # Enable/Disable gtk2 Theme / Icons / Font
308 #
309 # Default: 'on'
310 # Values:  'on', 'off'
311 # Flag:    --gtk2
312 #
313 # Example:
314 # on:  'Numix [GTK2], Adwaita [GTK3]'
315 # off: 'Adwaita [GTK3]'
316 gtk2="on"
317
318 # Enable/Disable gtk3 Theme / Icons / Font
319 #
320 # Default: 'on'
321 # Values:  'on', 'off'
322 # Flag:    --gtk3
323 #
324 # Example:
325 # on:  'Numix [GTK2], Adwaita [GTK3]'
326 # off: 'Numix [GTK2]'
327 gtk3="on"
328
329
330 # IP Address
331
332
333 # Website to ping for the public IP
334 #
335 # Default: 'http://ident.me'
336 # Values:  'url'
337 # Flag:    --ip_host
338 public_ip_host="http://ident.me"
339
340 # Public IP timeout.
341 #
342 # Default: '2'
343 # Values:  'int'
344 # Flag:    --ip_timeout
345 public_ip_timeout=2
346
347
348 # Desktop Environment
349
350
351 # Show Desktop Environment version
352 #
353 # Default: 'off'
354 # Values:  'on', 'off'
355 # Flag:    --de_version
356 de_version="off"
357
358
359 # Disk
360
361
362 # Which disks to display.
363 # The values can be any /dev/sdXX, mount point or directory.
364 # NOTE: By default we only show the disk info for '/'.
365 #
366 # Default: '/'
367 # Values:  '/', '/dev/sdXX', '/path/to/drive'.
368 # Flag:    --disk_show
369 #
370 # Example:
371 # disk_show=('/' '/dev/sdb1'):
372 #      'Disk (/): 74G / 118G (66%)'
373 #      'Disk (/mnt/Videos): 823G / 893G (93%)'
374 #
375 # disk_show=('/'):
376 #      'Disk (/): 74G / 118G (66%)'
377 #
378 disk_show=('/')
379
380 # Disk subtitle.
381 # What to append to the Disk subtitle.
382 #
383 # Default: 'mount'
384 # Values:  'mount', 'name', 'dir', 'none'
385 # Flag:    --disk_subtitle
386 #
387 # Example:
388 # name:   'Disk (/dev/sda1): 74G / 118G (66%)'
389 #         'Disk (/dev/sdb2): 74G / 118G (66%)'
390 #
391 # mount:  'Disk (/): 74G / 118G (66%)'
392 #         'Disk (/mnt/Local Disk): 74G / 118G (66%)'
393 #         'Disk (/mnt/Videos): 74G / 118G (66%)'
394 #
395 # dir:    'Disk (/): 74G / 118G (66%)'
396 #         'Disk (Local Disk): 74G / 118G (66%)'
397 #         'Disk (Videos): 74G / 118G (66%)'
398 #
399 # none:   'Disk: 74G / 118G (66%)'
400 #         'Disk: 74G / 118G (66%)'
401 #         'Disk: 74G / 118G (66%)'
402 disk_subtitle="mount"
403
404 # Disk percent.
405 # Show/Hide disk percent.
406 #
407 # Default: 'on'
408 # Values:  'on', 'off'
409 # Flag:    --disk_percent
410 #
411 # Example:
412 # on:  'Disk (/): 74G / 118G (66%)'
413 # off: 'Disk (/): 74G / 118G'
414 disk_percent="on"
415
416
417 # Song
418
419
420 # Manually specify a music player.
421 #
422 # Default: 'auto'
423 # Values:  'auto', 'player-name'
424 # Flag:    --music_player
425 #
426 # Available values for 'player-name':
427 #
428 # amarok
429 # audacious
430 # banshee
431 # bluemindo
432 # clementine
433 # cmus
434 # deadbeef
435 # deepin-music
436 # dragon
437 # elisa
438 # exaile
439 # gnome-music
440 # gmusicbrowser
441 # gogglesmm
442 # guayadeque
443 # io.elementary.music
444 # iTunes
445 # juk
446 # lollypop
447 # mocp
448 # mopidy
449 # mpd
450 # muine
451 # netease-cloud-music
452 # pogo
453 # pragha
454 # qmmp
455 # quodlibet
456 # rhythmbox
457 # sayonara
458 # smplayer
459 # spotify
460 # strawberry
461 # tomahawk
462 # vlc
463 # xmms2d
464 # xnoise
465 # yarock
466 music_player="auto"
467
468 # Format to display song information.
469 #
470 # Default: '%artist% - %album% - %title%'
471 # Values:  '%artist%', '%album%', '%title%'
472 # Flag:    --song_format
473 #
474 # Example:
475 # default: 'Song: Jet - Get Born - Sgt Major'
476 song_format="%artist% - %album% - %title%"
477
478 # Print the Artist, Album and Title on separate lines
479 #
480 # Default: 'off'
481 # Values:  'on', 'off'
482 # Flag:    --song_shorthand
483 #
484 # Example:
485 # on:  'Artist: The Fratellis'
486 #      'Album: Costello Music'
487 #      'Song: Chelsea Dagger'
488 #
489 # off: 'Song: The Fratellis - Costello Music - Chelsea Dagger'
490 song_shorthand="off"
491
492 # 'mpc' arguments (specify a host, password etc).
493 #
494 # Default:  ''
495 # Example: mpc_args=(-h HOST -P PASSWORD)
496 mpc_args=()
497
498
499 # Text Colors
500
501
502 # Text Colors
503 #
504 # Default:  'distro'
505 # Values:   'distro', 'num' 'num' 'num' 'num' 'num' 'num'
506 # Flag:     --colors
507 #
508 # Each number represents a different part of the text in
509 # this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info'
510 #
511 # Example:
512 # colors=(distro)      - Text is colored based on Distro colors.
513 # colors=(4 6 1 8 8 6) - Text is colored in the order above.
514 colors=(distro)
515
516
517 # Text Options
518
519
520 # Toggle bold text
521 #
522 # Default:  'on'
523 # Values:   'on', 'off'
524 # Flag:     --bold
525 bold="on"
526
527 # Enable/Disable Underline
528 #
529 # Default:  'on'
530 # Values:   'on', 'off'
531 # Flag:     --underline
532 underline_enabled="on"
533
534 # Underline character
535 #
536 # Default:  '-'
537 # Values:   'string'
538 # Flag:     --underline_char
539 underline_char="-"
540
541
542 # Info Separator
543 # Replace the default separator with the specified string.
544 #
545 # Default:  ':'
546 # Flag:     --separator
547 #
548 # Example:
549 # separator="->":   'Shell-> bash'
550 # separator=" =":   'WM = dwm'
551 separator=":"
552
553
554 # Color Blocks
555
556
557 # Color block range
558 # The range of colors to print.
559 #
560 # Default:  '0', '15'
561 # Values:   'num'
562 # Flag:     --block_range
563 #
564 # Example:
565 #
566 # Display colors 0-7 in the blocks.  (8 colors)
567 # neofetch --block_range 0 7
568 #
569 # Display colors 0-15 in the blocks. (16 colors)
570 # neofetch --block_range 0 15
571 block_range=(0 15)
572
573 # Toggle color blocks
574 #
575 # Default:  'on'
576 # Values:   'on', 'off'
577 # Flag:     --color_blocks
578 color_blocks="on"
579
580 # Color block width in spaces
581 #
582 # Default:  '3'
583 # Values:   'num'
584 # Flag:     --block_width
585 block_width=3
586
587 # Color block height in lines
588 #
589 # Default:  '1'
590 # Values:   'num'
591 # Flag:     --block_height
592 block_height=1
593
594 # Color Alignment
595 #
596 # Default: 'auto'
597 # Values: 'auto', 'num'
598 # Flag: --col_offset
599 #
600 # Number specifies how far from the left side of the terminal (in spaces) to
601 # begin printing the columns, in case you want to e.g. center them under your
602 # text.
603 # Example:
604 # col_offset="auto" - Default behavior of neofetch
605 # col_offset=7      - Leave 7 spaces then print the colors
606 col_offset="auto"
607
608 # Progress Bars
609
610
611 # Bar characters
612 #
613 # Default:  '-', '='
614 # Values:   'string', 'string'
615 # Flag:     --bar_char
616 #
617 # Example:
618 # neofetch --bar_char 'elapsed' 'total'
619 # neofetch --bar_char '-' '='
620 bar_char_elapsed="-"
621 bar_char_total="="
622
623 # Toggle Bar border
624 #
625 # Default:  'on'
626 # Values:   'on', 'off'
627 # Flag:     --bar_border
628 bar_border="on"
629
630 # Progress bar length in spaces
631 # Number of chars long to make the progress bars.
632 #
633 # Default:  '15'
634 # Values:   'num'
635 # Flag:     --bar_length
636 bar_length=15
637
638 # Progress bar colors
639 # When set to distro, uses your distro's logo colors.
640 #
641 # Default:  'distro', 'distro'
642 # Values:   'distro', 'num'
643 # Flag:     --bar_colors
644 #
645 # Example:
646 # neofetch --bar_colors 3 4
647 # neofetch --bar_colors distro 5
648 bar_color_elapsed="distro"
649 bar_color_total="distro"
650
651
652 # Info display
653 # Display a bar with the info.
654 #
655 # Default: 'off'
656 # Values:  'bar', 'infobar', 'barinfo', 'off'
657 # Flags:   --cpu_display
658 #          --memory_display
659 #          --battery_display
660 #          --disk_display
661 #
662 # Example:
663 # bar:     '[---=======]'
664 # infobar: 'info [---=======]'
665 # barinfo: '[---=======] info'
666 # off:     'info'
667 cpu_display="off"
668 memory_display="off"
669 battery_display="off"
670 disk_display="off"
671
672
673 # Backend Settings
674
675
676 # Image backend.
677 #
678 # Default:  'ascii'
679 # Values:   'ascii', 'caca', 'chafa', 'jp2a', 'iterm2', 'off',
680 #           'termpix', 'pixterm', 'tycat', 'w3m', 'kitty'
681 # Flag:     --backend
682 image_backend="ascii"
683
684 # Image Source
685 #
686 # Which image or ascii file to display.
687 #
688 # Default:  'auto'
689 # Values:   'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
690 #           'command output (neofetch --ascii "$(fortune | cowsay -W 30)")'
691 # Flag:     --source
692 #
693 # NOTE: 'auto' will pick the best image source for whatever image backend is used.
694 #       In ascii mode, distro ascii art will be used and in an image mode, your
695 #       wallpaper will be used.
696 image_source="auto"
697
698
699 # Ascii Options
700
701
702 # Ascii distro
703 # Which distro's ascii art to display.
704 #
705 # Default: 'auto'
706 # Values:  'auto', 'distro_name'
707 # Flag:    --ascii_distro
708 # NOTE: AIX, Alpine, Anarchy, Android, Antergos, antiX, AOSC,
709 #       Apricity, ArcoLinux, ArchBox, ARCHlabs, ArchStrike,
710 #       XFerience, ArchMerge, Arch, Artix, Arya, Bedrock, Bitrig,
711 #       BlackArch, BLAG, BlankOn, BlueLight, bonsai, BSD,
712 #       BunsenLabs, Calculate, Carbs, CentOS, Chakra, ChaletOS,
713 #       Chapeau, Chrom*, Cleanjaro, ClearOS, Clear_Linux, Clover,
714 #       Condres, Container_Linux, CRUX, Cucumber, Debian, Deepin,
715 #       DesaOS, Devuan, DracOS, DragonFly, Drauger, Elementary,
716 #       EndeavourOS, Endless, EuroLinux, Exherbo, Fedora, Feren, FreeBSD,
717 #       FreeMiNT, Frugalware, Funtoo, GalliumOS, Gentoo, Pentoo,
718 #       gNewSense, GNU, GoboLinux, Grombyang, Guix, Haiku, Huayra,
719 #       Hyperbola, janus, Kali, KaOS, KDE_neon, Kibojoe, Kogaion,
720 #       Korora, KSLinux, Kubuntu, LEDE, LFS, Linux_Lite,
721 #       LMDE, Lubuntu, Lunar, macos, Mageia, MagpieOS, Mandriva,
722 #       Manjaro, Maui, Mer, Minix, LinuxMint, MX_Linux, Namib,
723 #       Neptune, NetBSD, Netrunner, Nitrux, NixOS, Nurunner,
724 #       NuTyX, OBRevenge, OpenBSD, OpenIndiana, OpenMandriva,
725 #       OpenWrt, osmc, Oracle, PacBSD, Parabola, Pardus, Parrot,
726 #       Parsix, TrueOS, PCLinuxOS, Peppermint, popos, Porteus,
727 #       PostMarketOS, Proxmox, Puppy, PureOS, Qubes, Radix, Raspbian,
728 #       Reborn_OS, Redstar, Redcore, Redhat, Refracted_Devuan, Regata,
729 #       Rosa, sabotage, Sabayon, Sailfish, SalentOS, Scientific, Septor,
730 #       SharkLinux, Siduction, Slackware, SliTaz, SmartOS, Solus,
731 #       Source_Mage, Sparky, Star, SteamOS, SunOS, openSUSE_Leap,
732 #       openSUSE_Tumbleweed, openSUSE, SwagArch, Tails, Trisquel,
733 #       Ubuntu-Budgie, Ubuntu-GNOME, Ubuntu-MATE, Ubuntu-Studio, Ubuntu,
734 #       Void, Obarun, windows10, Windows7, Xubuntu, Zorin, and IRIX
735 #       have ascii logos
736 # NOTE: Arch, Ubuntu, Redhat, and Dragonfly have 'old' logo variants.
737 #       Use '{distro name}_old' to use the old logos.
738 # NOTE: Ubuntu has flavor variants.
739 #       Change this to Lubuntu, Kubuntu, Xubuntu, Ubuntu-GNOME,
740 #       Ubuntu-Studio, Ubuntu-Mate  or Ubuntu-Budgie to use the flavors.
741 # NOTE: Arcolinux, Dragonfly, Fedora, Alpine, Arch, Ubuntu,
742 #       CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, OpenBSD, android,
743 #       Antrix, CentOS, Cleanjaro, ElementaryOS, GUIX, Hyperbola,
744 #       Manjaro, MXLinux, NetBSD, Parabola, POP_OS, PureOS,
745 #       Slackware, SunOS, LinuxLite, OpenSUSE, Raspbian,
746 #       postmarketOS, and Void have a smaller logo variant.
747 #       Use '{distro name}_small' to use the small variants.
748 ascii_distro="auto"
749
750 # Ascii Colors
751 #
752 # Default:  'distro'
753 # Values:   'distro', 'num' 'num' 'num' 'num' 'num' 'num'
754 # Flag:     --ascii_colors
755 #
756 # Example:
757 # ascii_colors=(distro)      - Ascii is colored based on Distro colors.
758 # ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors.
759 ascii_colors=(distro)
760
761 # Bold ascii logo
762 # Whether or not to bold the ascii logo.
763 #
764 # Default: 'on'
765 # Values:  'on', 'off'
766 # Flag:    --ascii_bold
767 ascii_bold="on"
768
769
770 # Image Options
771
772
773 # Image loop
774 # Setting this to on will make neofetch redraw the image constantly until
775 # Ctrl+C is pressed. This fixes display issues in some terminal emulators.
776 #
777 # Default:  'off'
778 # Values:   'on', 'off'
779 # Flag:     --loop
780 image_loop="off"
781
782 # Thumbnail directory
783 #
784 # Default: '~/.cache/thumbnails/neofetch'
785 # Values:  'dir'
786 thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch"
787
788 # Crop mode
789 #
790 # Default:  'normal'
791 # Values:   'normal', 'fit', 'fill'
792 # Flag:     --crop_mode
793 #
794 # See this wiki page to learn about the fit and fill options.
795 # https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F
796 crop_mode="normal"
797
798 # Crop offset
799 # Note: Only affects 'normal' crop mode.
800 #
801 # Default:  'center'
802 # Values:   'northwest', 'north', 'northeast', 'west', 'center'
803 #           'east', 'southwest', 'south', 'southeast'
804 # Flag:     --crop_offset
805 crop_offset="center"
806
807 # Image size
808 # The image is half the terminal width by default.
809 #
810 # Default: 'auto'
811 # Values:  'auto', '00px', '00%', 'none'
812 # Flags:   --image_size
813 #          --size
814 image_size="auto"
815
816 # Gap between image and text
817 #
818 # Default: '3'
819 # Values:  'num', '-num'
820 # Flag:    --gap
821 gap=3
822
823 # Image offsets
824 # Only works with the w3m backend.
825 #
826 # Default: '0'
827 # Values:  'px'
828 # Flags:   --xoffset
829 #          --yoffset
830 yoffset=0
831 xoffset=0
832
833 # Image background color
834 # Only works with the w3m backend.
835 #
836 # Default: ''
837 # Values:  'color', 'blue'
838 # Flag:    --bg_color
839 background_color=
840
841
842 # Misc Options
843
844 # Stdout mode
845 # Turn off all colors and disables image backend (ASCII/Image).
846 # Useful for piping into another command.
847 # Default: 'off'
848 # Values: 'on', 'off'
849 stdout="off"