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
|
print_info() {
## Title.
info title
info underline
## PC info.
# info "OS" distro
# info "Kernel" kernel
info "Motherboard" model
info "CPU" cpu
# info "CPU Usage" cpu_usage
info "Memory" memory
info "GPU" gpu
# info "GPU Driver" gpu_driver # Linux/macOS only
info "Disk" disk
# info "Battery" battery
info "Uptime" uptime
info underline
## Software.
info "Resolution" resolution
# info "DE" de
info "WM" wm
# info "WM Theme" wm_theme
# info "Font" font
# info "Theme" theme
# info "Icons" icons
info "Shell" shell
info "Terminal" term
info "Terminal Font" term_font
info "Packages" packages
# info underline
## Miscellaneous.
# [[ "$player" ]] && prin "Music Player" "$player"
# info "Song" song
# info "Local IP" local_ip
# info "Public IP" public_ip
# info "Users" users
# info "Locale" locale # This only works on glibc systems.
info cols
}
## Kernel
kernel_shorthand="on"
## Distro
distro_shorthand="off"
os_arch="off"
## Uptime
uptime_shorthand="tiny"
## Memory
memory_percent="on"
## Packages
package_managers="tiny"
## Shell
shell_path="off"
shell_version="on"
## CPU
speed_type="bios_limit"
speed_shorthand="on"
cpu_brand="off"
cpu_speed="on"
cpu_cores="off"
cpu_temp="off"
## GPU
gpu_brand="off"
gpu_type="all"
## Resolution
refresh_rate="on"
## Gtk Theme / Icons / Font
gtk_shorthand="off"
gtk2="on"
gtk3="on"
## IP Address
public_ip_host="http://ident.me"
public_ip_timeout=2
## Disk
disk_show=('/' '/home')
disk_subtitle="mount"
## Song
music_player="auto"
song_format="%artist% - %album%- %title%"
song_shorthand="on"
mpc_args=()
## Text Colors
# Each number represents a different part of the text in
# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info'
# colors=(4 6 1 32 2 6)
colors=(distro)
## Text Options
bold="on"
underline_enabled="on"
underline_char="-"
separator=":"
## Color Blocks
block_range=(0 15)
color_blocks="on"
block_width=3
block_height=1
## Progress Bars
bar_char_elapsed="-"
bar_char_total="="
bar_border="on"
bar_length=10
bar_color_elapsed="distro"
bar_color_total="distro"
cpu_display="off"
memory_display="off"
battery_display="off"
disk_display="off"
## Image Backend
# Values: 'ascii', 'caca', 'chafa', 'jp2a', 'iterm2', 'off',
# 'termpix', 'pixterm', 'tycat', 'w3m', 'kitty'
image_backend="ascii"
# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
# 'command output (neofetch --ascii "$(fortune | cowsay -W 30)")'
image_source="auto"
ascii_distro="auto"
# ascii_colors=(33 33 64 64 37 37)
ascii_colors=(distro)
ascii_bold="on"
## Image Options
image_loop="off"
thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch"
crop_mode="normal"
crop_offset="center"
image_size="auto"
gap=3
yoffset=0
xoffset=0
background_color=
## Misc Options
stdout="off"
|