Última actividad 1769164736

Shows Linux System Information with Distribution Logo

config.conf Sin formato
1# See this wiki page for more info:
2# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
3print_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 "Editor" editor
14 info "Resolution" resolution
15 info "DE" de
16 info "WM" wm
17 info "WM Theme" wm_theme
18 info "Theme" theme
19 info "Icons" icons
20 info "Cursor" cursor
21 info "Terminal" term
22 info "Terminal Font" term_font
23 info "CPU" cpu
24 info "GPU" gpu
25 info "Memory" memory
26 info "Network" network
27 info "Bluetooth" bluetooth
28 info "BIOS" bios
29
30 # info "GPU Driver" gpu_driver # Linux/macOS only
31 info "Disk" disk
32 # info "Battery" battery
33 # info "Power Adapter" power_adapter # macOS only
34 # info "Font" font
35 # info "Song" song
36 # [[ "$player" ]] && prin "Music Player" "$player"
37 info "Local IP" local_ip
38 info "Public IP" public_ip
39 info "Users" users
40 # info "Locale" locale # This only works on glibc systems.
41
42 # info "Java" java_ver
43 # info "Python" python_ver
44 # info "Node" node_ver
45
46 info cols
47}
48
49# Title
50
51
52# Hide/Show Fully qualified domain name.
53#
54# Default: 'off'
55# Values: 'on', 'off'
56# Flag: --title_fqdn
57title_fqdn="on"
58
59
60# Kernel
61
62
63# Shorten the output of the kernel function.
64#
65# Default: 'on'
66# Values: 'on', 'off'
67# Flag: --kernel_shorthand
68# Supports: Everything except *BSDs (except PacBSD and PC-BSD)
69#
70# Example:
71# on: '4.8.9-1-ARCH'
72# off: 'Linux 4.8.9-1-ARCH'
73kernel_shorthand="on"
74
75
76# Distro
77
78
79# Shorten the output of the distro function
80#
81# Default: 'off'
82# Values: 'on', 'tiny', 'off'
83# Flag: --distro_shorthand
84# Supports: Everything except Windows and Haiku
85distro_shorthand="off"
86
87# Show/Hide OS Architecture.
88# Show 'x86_64', 'x86' and etc in 'Distro:' output.
89#
90# Default: 'on'
91# Values: 'on', 'off'
92# Flag: --os_arch
93#
94# Example:
95# on: 'Arch Linux x86_64'
96# off: 'Arch Linux'
97os_arch="on"
98
99
100# Uptime
101
102
103# Shorten the output of the uptime function
104#
105# Default: 'on'
106# Values: 'on', 'tiny', 'off'
107# Flag: --uptime_shorthand
108#
109# Example:
110# on: '2 days, 10 hours, 3 mins'
111# tiny: '2d 10h 3m'
112# off: '2 days, 10 hours, 3 minutes'
113uptime_shorthand="on"
114
115
116# Memory
117
118
119# Show memory percentage in output.
120#
121# Default: 'off'
122# Values: 'on', 'off'
123# Flag: --memory_percent
124#
125# Example:
126# on: '1801MiB / 7881MiB (22%)'
127# off: '1801MiB / 7881MiB'
128memory_percent="on"
129
130# Change memory output unit.
131#
132# Default: 'mib'
133# Values: 'kib', 'mib', 'gib', 'tib'
134# Flag: --memory_unit
135#
136# Example:
137# kib '1020928KiB / 7117824KiB'
138# mib '1042MiB / 6951MiB'
139# gib: ' 0.98GiB / 6.79GiB'
140memory_unit="gib"
141
142# Change memory output precision.
143#
144# Default: '2'
145# Values: integer ≥ 0
146# Flag: --memory_precision
147mem_precision=2
148
149# Packages
150
151
152# Show/Hide Package Manager names.
153#
154# Default: 'tiny'
155# Values: 'on', 'tiny' 'off'
156# Flag: --package_managers
157#
158# Example:
159# on: '998 (pacman), 8 (flatpak), 4 (snap)'
160# tiny: '908 (pacman, flatpak, snap)'
161# off: '908'
162package_managers="on"
163
164
165# Show separate user and system packages for supported package managers
166#
167# Default: 'on'
168# Values: 'on', 'off'
169# Flag: --package_separate
170#
171# Example:
172# on: '8 packages (flatpak-system), 9 packages (flatpak-user)'
173# off: '17 packages (flatpak)'
174package_separate="on"
175
176# Reduce output of packages list by not showing programming language package managers or Steam games
177#
178# Flag: --package_minimal
179#
180# Example:
181# default: 'Packages: 1 (npm), 991 (emerge), 3 (steam), 23 (flatpak-system)'
182# minimal: 'Packages: 991 (emerge), 23 (flatpak-system)'
183package_minimal=""
184
185
186# Shell
187
188
189# Show the path to $SHELL
190#
191# Default: 'off'
192# Values: 'on', 'off'
193# Flag: --shell_path
194#
195# Example:
196# on: '/bin/bash'
197# off: 'bash'
198shell_path="on"
199
200# Show $SHELL version
201#
202# Default: 'on'
203# Values: 'on', 'off'
204# Flag: --shell_version
205#
206# Example:
207# on: 'bash 4.4.5'
208# off: 'bash'
209shell_version="on"
210
211
212# Editor
213
214
215# Show path to $EDITOR
216#
217# Default: 'off'
218# Values: 'on', 'off'
219# Flag: --editor_path
220#
221# Example:
222# on: '/opt/bin/vim'
223# off: 'vim'
224editor_path="on"
225
226# Show $EDITOR version
227#
228# Default: 'on'
229# Values: 'on', 'off'
230# Flag: '--editor_version'
231#
232# Example:
233# on: 'vim 9.0'
234# off: 'vim'
235editor_version="on"
236
237
238# CPU
239
240
241# CPU speed type
242#
243# Default: 'bios_limit'
244# Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'.
245# Flag: --speed_type
246# Supports: Linux with 'cpufreq'
247# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value.
248speed_type="bios_limit"
249
250# CPU speed shorthand
251#
252# Default: 'off'
253# Values: 'on', 'off'.
254# Flag: --speed_shorthand
255# NOTE: This flag is not supported in systems with CPU speed less than 1 GHz
256#
257# Example:
258# on: 'i7-6500U (4) @ 3.1GHz'
259# off: 'i7-6500U (4) @ 3.100GHz'
260speed_shorthand="on"
261
262# Enable/Disable CPU brand in output.
263#
264# Default: 'on'
265# Values: 'on', 'off'
266# Flag: --cpu_brand
267#
268# Example:
269# on: 'Intel i7-6500U'
270# off: 'i7-6500U (4)'
271cpu_brand="on"
272
273# CPU Speed
274# Hide/Show CPU speed.
275#
276# Default: 'on'
277# Values: 'on', 'off'
278# Flag: --cpu_speed
279#
280# Example:
281# on: 'Intel i7-6500U (4) @ 3.1GHz'
282# off: 'Intel i7-6500U (4)'
283cpu_speed="on"
284
285# CPU Cores
286# Display CPU cores in output
287#
288# Default: 'logical'
289# Values: 'logical', 'physical', 'off'
290# Flag: --cpu_cores
291# Support: 'physical' doesn't work on BSD.
292#
293# Example:
294# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores)
295# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores)
296# off: 'Intel i7-6500U @ 3.1GHz'
297cpu_cores="logical"
298
299# CPU Temperature
300# Hide/Show CPU temperature.
301# Note the temperature is added to the regular CPU function.
302#
303# Default: 'off'
304# Values: 'C', 'F', 'off'
305# Flag: --cpu_temp
306# Supports: Linux, BSD
307# NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable
308# coretemp kernel module. This only supports newer Intel processors.
309#
310# Example:
311# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]'
312# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]'
313# off: 'Intel i7-6500U (4) @ 3.1GHz'
314cpu_temp="off"
315
316
317# GPU
318
319
320# Enable/Disable GPU Brand
321#
322# Default: 'on'
323# Values: 'on', 'off'
324# Flag: --gpu_brand
325#
326# Example:
327# on: 'AMD HD 7950'
328# off: 'HD 7950'
329gpu_brand="on"
330
331# Which GPU to display
332#
333# Default: 'all'
334# Values: 'all', 'dedicated', 'integrated'
335# Flag: --gpu_type
336# Supports: Linux
337#
338# Example:
339# all:
340# GPU1: AMD HD 7950
341# GPU2: Intel Integrated Graphics
342#
343# dedicated:
344# GPU1: AMD HD 7950
345#
346# integrated:
347# GPU1: Intel Integrated Graphics
348gpu_type="all"
349
350
351# Resolution
352
353
354# Display refresh rate next to each monitor
355# Default: 'off'
356# Values: 'on', 'off'
357# Flag: --refresh_rate
358# Supports: Doesn't work on Windows.
359#
360# Example:
361# on: '1920x1080 @ 60Hz'
362# off: '1920x1080'
363refresh_rate="on"
364
365
366# Gtk Theme / Icons / Font
367
368
369# Shorten output of GTK Theme / Icons / Font
370#
371# Default: 'off'
372# Values: 'on', 'off'
373# Flag: --gtk_shorthand
374#
375# Example:
376# on: 'Numix, Adwaita'
377# off: 'Numix [GTK2], Adwaita [GTK3]'
378gtk_shorthand="off"
379
380
381# Enable/Disable gtk2 Theme / Icons / Font
382#
383# Default: 'on'
384# Values: 'on', 'off'
385# Flag: --gtk2
386#
387# Example:
388# on: 'Numix [GTK2], Adwaita [GTK3]'
389# off: 'Adwaita [GTK3]'
390gtk2="on"
391
392# Enable/Disable gtk3 Theme / Icons / Font
393#
394# Default: 'on'
395# Values: 'on', 'off'
396# Flag: --gtk3
397#
398# Example:
399# on: 'Numix [GTK2], Adwaita [GTK3]'
400# off: 'Numix [GTK2]'
401gtk3="on"
402
403# Enable/Disable Qt Theme / Icons / Font
404#
405# Default: 'on'
406# Values: 'on', 'off'
407# Flag: --qt
408#
409# Example:
410# on: 'Breeze [Qt], Arc [GTK3]'
411# off: 'Arc [GTK3]'
412qt="on"
413
414# IP Address
415
416
417# Website to ping for the public IP
418#
419# Default: 'http://ident.me'
420# Values: 'url'
421# Flag: --ip_host
422public_ip_host="http://ident.me"
423
424# Public IP timeout.
425#
426# Default: '2'
427# Values: 'int'
428# Flag: --ip_timeout
429public_ip_timeout=2
430
431# Local IP interface
432#
433# Default: 'auto' (interface of default route)
434# Values: 'auto', 'en0', 'en1'
435# Flag: --ip_interface
436local_ip_interface=('auto')
437
438
439# Desktop Environment
440
441
442# Show Desktop Environment version
443#
444# Default: 'on'
445# Values: 'on', 'off'
446# Flag: --de_version
447de_version="on"
448
449
450# Disk
451
452
453# Which disks to display.
454# The values can be any /dev/sdXX, mount point or directory.
455# NOTE: By default we only show the disk info for '/'.
456#
457# Default: '/'
458# Values: '/', '/dev/sdXX', '/path/to/drive'.
459# Flag: --disk_show
460#
461# Example:
462# disk_show=('/' '/dev/sdb1'):
463# 'Disk (/): 74G / 118G (66%)'
464# 'Disk (/mnt/Videos): 823G / 893G (93%)'
465#
466# disk_show=('/'):
467# 'Disk (/): 74G / 118G (66%)'
468#
469disk_show=('/')
470
471# Disk subtitle.
472# What to append to the Disk subtitle.
473#
474# Default: 'mount'
475# Values: 'mount', 'name', 'dir', 'none'
476# Flag: --disk_subtitle
477#
478# Example:
479# name: 'Disk (/dev/sda1): 74G / 118G (66%)'
480# 'Disk (/dev/sdb2): 74G / 118G (66%)'
481#
482# mount: 'Disk (/): 74G / 118G (66%)'
483# 'Disk (/mnt/Local Disk): 74G / 118G (66%)'
484# 'Disk (/mnt/Videos): 74G / 118G (66%)'
485#
486# dir: 'Disk (/): 74G / 118G (66%)'
487# 'Disk (Local Disk): 74G / 118G (66%)'
488# 'Disk (Videos): 74G / 118G (66%)'
489#
490# none: 'Disk: 74G / 118G (66%)'
491# 'Disk: 74G / 118G (66%)'
492# 'Disk: 74G / 118G (66%)'
493disk_subtitle="mount"
494
495# Disk percent.
496# Show/Hide disk percent.
497#
498# Default: 'on'
499# Values: 'on', 'off'
500# Flag: --disk_percent
501#
502# Example:
503# on: 'Disk (/): 74G / 118G (66%)'
504# off: 'Disk (/): 74G / 118G'
505disk_percent="on"
506
507
508# Song
509
510
511# Manually specify a music player.
512#
513# Default: 'auto'
514# Values: 'auto', 'player-name'
515# Flag: --music_player
516#
517# Available values for 'player-name':
518#
519# amarok
520# audacious
521# banshee
522# bluemindo
523# cider
524# clementine
525# cmus
526# deadbeef
527# deepin-music
528# dragon
529# elisa
530# exaile
531# gnome-music
532# gmusicbrowser
533# gogglesmm
534# guayadeque
535# io.elementary.music
536# iTunes
537# Music
538# juk
539# lollypop
540# MellowPlayer
541# mocp
542# mopidy
543# mpd
544# muine
545# netease-cloud-music
546# olivia
547# playerctl
548# pogo
549# pragha
550# qmmp
551# quodlibet
552# rhythmbox
553# sayonara
554# smplayer
555# spotify
556# strawberry
557# tauonmb
558# tomahawk
559# vlc
560# xmms2d
561# xnoise
562# yarock
563music_player="auto"
564
565# Format to display song information.
566#
567# Default: '%artist% - %album% - %title%'
568# Values: '%artist%', '%album%', '%title%'
569# Flag: --song_format
570#
571# Example:
572# default: 'Song: Jet - Get Born - Sgt Major'
573song_format="%artist% - %album% - %title%"
574
575# Print the Artist, Album and Title on separate lines
576#
577# Default: 'off'
578# Values: 'on', 'off'
579# Flag: --song_shorthand
580#
581# Example:
582# on: 'Artist: The Fratellis'
583# 'Album: Costello Music'
584# 'Song: Chelsea Dagger'
585#
586# off: 'Song: The Fratellis - Costello Music - Chelsea Dagger'
587song_shorthand="off"
588
589# 'mpc' arguments (specify a host, password etc).
590#
591# Default: ''
592# Example: mpc_args=(-h HOST -P PASSWORD)
593mpc_args=()
594
595
596# Text Colors
597
598
599# Text Colors
600#
601# Default: 'distro'
602# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num'
603# Flag: --colors
604#
605# Each number represents a different part of the text in
606# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info'
607#
608# Example:
609# colors=(distro) - Text is colored based on Distro colors.
610# colors=(4 6 1 8 8 6) - Text is colored in the order above.
611colors=(distro)
612
613
614# Text Options
615
616
617# Toggle bold text
618#
619# Default: 'on'
620# Values: 'on', 'off'
621# Flag: --bold
622bold="on"
623
624# Enable/Disable Underline
625#
626# Default: 'on'
627# Values: 'on', 'off'
628# Flag: --underline
629underline_enabled="on"
630
631# Underline character
632#
633# Default: '-'
634# Values: 'string'
635# Flag: --underline_char
636underline_char="-"
637
638
639# Info Separator
640# Replace the default separator with the specified string.
641#
642# Default: ':'
643# Flag: --separator
644#
645# Example:
646# separator="->": 'Shell-> bash'
647# separator=" =": 'WM = dwm'
648separator=":"
649
650
651# Color Blocks
652
653
654# Color block range
655# The range of colors to print.
656#
657# Default: '0', '15'
658# Values: 'num'
659# Flag: --block_range
660#
661# Example:
662#
663# Display colors 0-7 in the blocks. (8 colors)
664# neowofetch --block_range 0 7
665#
666# Display colors 0-15 in the blocks. (16 colors)
667# neowofetch --block_range 0 15
668block_range=(0 15)
669
670# Toggle color blocks
671#
672# Default: 'on'
673# Values: 'on', 'off'
674# Flag: --color_blocks
675color_blocks="on"
676
677# Color block width in spaces
678#
679# Default: '3'
680# Values: 'num'
681# Flag: --block_width
682block_width=3
683
684# Color block height in lines
685#
686# Default: '1'
687# Values: 'num'
688# Flag: --block_height
689block_height=1
690
691# Color Alignment
692#
693# Default: 'auto'
694# Values: 'auto', 'num'
695# Flag: --col_offset
696#
697# Number specifies how far from the left side of the terminal (in spaces) to
698# begin printing the columns, in case you want to e.g. center them under your
699# text.
700# Example:
701# col_offset="auto" - Default behavior of neowofetch
702# col_offset=7 - Leave 7 spaces then print the colors
703col_offset="auto"
704
705# Progress Bars
706
707
708# Bar characters
709#
710# Default: '-', '='
711# Values: 'string', 'string'
712# Flag: --bar_char
713#
714# Example:
715# neowofetch --bar_char 'elapsed' 'total'
716# neowofetch --bar_char '-' '='
717bar_char_elapsed="-"
718bar_char_total="="
719
720# Toggle Bar border
721#
722# Default: 'on'
723# Values: 'on', 'off'
724# Flag: --bar_border
725bar_border="on"
726
727# Progress bar length in spaces
728# Number of chars long to make the progress bars.
729#
730# Default: '15'
731# Values: 'num'
732# Flag: --bar_length
733bar_length=15
734
735# Progress bar colors
736# When set to distro, uses your distro's logo colors.
737#
738# Default: 'distro', 'distro'
739# Values: 'distro', 'num'
740# Flag: --bar_colors
741#
742# Example:
743# neowofetch --bar_colors 3 4
744# neowofetch --bar_colors distro 5
745bar_color_elapsed="distro"
746bar_color_total="distro"
747
748
749# Info display
750# Display a bar with the info.
751#
752# Default: 'off'
753# Values: 'bar', 'infobar', 'barinfo', 'off'
754# Flags: --memory_display
755# --battery_display
756# --disk_display
757#
758# Example:
759# bar: '[---=======]'
760# infobar: 'info [---=======]'
761# barinfo: '[---=======] info'
762# off: 'info'
763memory_display="off"
764battery_display="off"
765disk_display="off"
766
767
768# Backend Settings
769
770
771# Image backend.
772#
773# Default: 'ascii'
774# Values: 'ascii', 'caca', 'catimg', 'chafa', 'jp2a', 'iterm2', 'off',
775# 'pot', 'termpix', 'pixterm', 'tycat', 'w3m', 'kitty', 'ueberzug',
776# 'viu'
777
778# Flag: --backend
779image_backend="ascii"
780
781# Image Source
782#
783# Which image or ascii file to display.
784#
785# Default: 'auto'
786# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
787# 'command output (neowofetch --ascii "$(fortune | cowsay -W 30)")'
788# Flag: --source
789#
790# NOTE: 'auto' will pick the best image source for whatever image backend is used.
791# In ascii mode, distro ascii art will be used and in an image mode, your
792# wallpaper will be used.
793image_source="auto"
794
795
796# Ascii Options
797
798
799# Ascii distro
800# Which distro's ascii art to display.
801#
802# Default: 'auto'
803# Values: 'auto', 'distro_name'
804# Flag: --ascii_distro
805#
806# NOTE: Adélie, aerOS, Afterglow, AIX, AlmaLinux, Alpine, Alter, Amazon, AmogOS, Anarchy, Android,
807# Antergos, antiX, AOSC OS, Aperio GNU/Linux, Aperture, Apricity, Arch, ArchBox, Archcraft,
808# archcraft_ascii, archcraft_minimal, ARCHlabs, ArchMerge, ArchStrike, ArcoLinux, Arkane, ArseLinux,
809# Artix, Arya, Asahi, AsteroidOS, astOS, Astra Linux, Athena, azos, Bedrock, BigLinux,
810# BigLinux_large, Bitrig, BlackArch, BlackMesa, blackPanther, BLAG, BlankOn, BlueLight, Bodhi,
811# bonsai, BSD, BunsenLabs, CachyOS, Calculate, CalinixOS, Carbs, CBL-Mariner, CelOS, Center, CentOS,
812# Chakra, ChaletOS, Chapeau, Chimera, ChonkySealOS, Chrom, Cleanjaro, Clear Linux OS, ClearOS,
813# Clover, Cobalt, Condres, Container Linux by CoreOS, CRUX, Crystal Linux, Cucumber, CutefishOS,
814# CuteOS, CyberOS, dahlia, DarkOs, Darwin, Debian, Deepin, DesaOS, Devuan, DietPi, digital UNIX,
815# DracOS, DragonFly, Drauger, Droidian, Elementary, Elive, EncryptOS, EndeavourOS, Endless, Enso,
816# EuroLinux, EvolutionOS, eweOS, Exherbo, Exodia Predator OS, Fedora, Fedora Kinoite, Fedora
817# Sericea, Fedora Silverblue, Fedora_unicode, FemboyOS, Feren, Finnix, Floflis, FreeBSD, FreeMiNT,
818# Frugalware, Funtoo, Furreto, GalliumOS, Garuda, Gentoo, GhostBSD, glaucus, gNewSense, GNOME, GNU,
819# GoboLinux, GrapheneOS, Grombyang, Guix, Haiku, HamoniKR, HarDClanZ, Hash, Huayra, Hybrid, HydroOS,
820# Hyperbola, iglunix, instantOS, Interix, IRIX, Ironclad, Itc, januslinux, Kaisen, Kali, KaOS, KDE,
821# Kibojoe, Kogaion, Korora, KrassOS, KSLinux, Kubuntu, LainOS, LangitKetujuh, LaxerOS, LEDE,
822# LibreELEC, Linspire, Linux, Linux Lite, Linux Mint, Linux Mint Old, LinuxFromScratch, Live Raizo,
823# LMDE, Lubuntu, Lunar, mac, MacaroniOS, Mageia, Magix, MagpieOS, MainsailOS, Mandriva, Manjaro,
824# MassOS, MatuusOS, Maui, Mauna, Meowix, Mer, Minix, MIRACLE LINUX, MX, Namib, NekOS, Neptune,
825# NetBSD, Netrunner, Nitrux, NixOS, nixos_colorful, Nobara, NomadBSD, Nurunner, NuTyX, Obarun,
826# OBRevenge, OmniOS, Open Source Media Center, OpenBSD, openEuler, OpenIndiana, openKylin,
827# openmamba, OpenMandriva, OpenStage, openSUSE, openSUSE Leap, openSUSE Tumbleweed, OPNsense,
828# Oracle, orchid, OS Elbrus, PacBSD, Panwah, Parabola, parch, Pardus, Parrot, Parsix, PCBSD,
829# PCLinuxOS, pearOS, Pengwin, Pentoo, Peppermint, Peropesis, phyOS, PikaOS, Pisi, PNM Linux,
830# Pop!_OS, Porteus, PostMarketOS, Profelis SambaBOX, Proxmox, PuffOS, Puppy, PureOS, Q4OS, Qubes,
831# Qubyt, Quibian, Radix, Raspbian, ravynOS, Reborn OS, Red Star, Redcore, Redhat, Refracted Devuan,
832# Regata, Regolith, RhaymOS, rocky, Rosa, Sabayon, sabotage, Sailfish, SalentOS, Salient OS, Salix,
833# Sasanqua, Scientific, semc, Septor, Serene, SharkLinux, ShastraOS, Siduction, SkiffOS, Slackel,
834# Slackware, SliTaz, SmartOS, Soda, Solus, Source Mage, Sparky, Star, SteamOS, Stock Linux, Sulin,
835# SunOS, SwagArch, t2, Tails, Tatra, TeArch, TorizonCore, Trisquel, Twister, Ubuntu, Ubuntu Budgie,
836# Ubuntu Cinnamon, Ubuntu Kylin, Ubuntu MATE, Ubuntu Studio, Ubuntu Sway, Ubuntu Touch, Ubuntu-
837# GNOME, ubuntu_old02, Ultramarine Linux, unicodearch, Univalent, Univention, Uos, UrukOS, uwuntu,
838# Vanilla, Venom, VNux, Void, VzLinux, wii-linux-ngx, Windows, Windows 10, Windows 11, Windows95,
839# Wrt, Xenia, Xenia2, XFerience, Xray_OS, Xubuntu, yiffOS, Zorin have ascii logos.
840
841# NOTE: arch, dragonfly, Fedora, LangitKetujuh, nixos, redhat, Ubuntu have 'old' logo variants, use
842# {distro}_old to use them.
843
844# NOTE: alpine, android, arch, arcolinux, artix, CalinixOS, centos, cleanjaro, crux, debian,
845# dragonfly, elementary, endeavouros, fedora, freebsd, garuda, gentoo, guix, haiku, hyperbola, kali,
846# Linux, linuxlite, linuxmint, mac, mageia, MainsailOS, manjaro, mx, netbsd, nixos, openbsd,
847# opensuse, orchid, parabola, popos, postmarketos, pureos, Raspbian, rocky, slackware, sunos,
848# ubuntu, venom, void have 'small' logo variants, use {distro}_small to use them.
849ascii_distro="auto"
850
851# Ascii Colors
852#
853# Default: 'distro'
854# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num'
855# Flag: --ascii_colors
856#
857# Example:
858# ascii_colors=(distro) - Ascii is colored based on Distro colors.
859# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors.
860ascii_colors=(distro)
861
862# Bold ascii logo
863# Whether or not to bold the ascii logo.
864#
865# Default: 'on'
866# Values: 'on', 'off'
867# Flag: --ascii_bold
868ascii_bold="on"
869
870
871# Image Options
872
873
874# Image loop
875# Setting this to on will make neowofetch redraw the image constantly until
876# Ctrl+C is pressed. This fixes display issues in some terminal emulators.
877#
878# Default: 'off'
879# Values: 'on', 'off'
880# Flag: --loop
881image_loop="off"
882
883# Thumbnail directory
884#
885# Default: '~/.cache/thumbnails/neowofetch'
886# Values: 'dir'
887thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neowofetch"
888
889# Crop mode
890#
891# Default: 'normal'
892# Values: 'normal', 'fit', 'fill'
893# Flag: --crop_mode
894#
895# See this wiki page to learn about the fit and fill options.
896# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F
897crop_mode="normal"
898
899# Crop offset
900# Note: Only affects 'normal' crop mode.
901#
902# Default: 'center'
903# Values: 'northwest', 'north', 'northeast', 'west', 'center'
904# 'east', 'southwest', 'south', 'southeast'
905# Flag: --crop_offset
906crop_offset="center"
907
908# Image size
909# The image is half the terminal width by default.
910#
911# Default: 'auto'
912# Values: 'auto', '00px', '00%', 'none'
913# Flags: --image_size
914# --size
915image_size="auto"
916
917# Catimg block size.
918# Control the resolution of catimg.
919#
920# Default: '2'
921# Values: '1', '2'
922# Flags: --catimg_size
923catimg_size="2"
924
925# Gap between image and text
926#
927# Default: '3'
928# Values: 'num', '-num'
929# Flag: --gap
930gap=3
931
932# Image offsets
933# Only works with the w3m backend.
934#
935# Default: '0'
936# Values: 'px'
937# Flags: --xoffset
938# --yoffset
939yoffset=0
940xoffset=0
941
942# Image background color
943# Only works with the w3m backend.
944#
945# Default: ''
946# Values: 'color', 'blue'
947# Flag: --bg_color
948background_color=
949
950
951# Misc Options
952
953# Stdout mode
954# If enabled, turn off all colors and disables image backend (ASCII/Image).
955# Useful for piping into another command.
956# Default: 'auto'
957# Values: 'auto', 'on', 'off'
958stdout="auto"
959