165 lines
2.6 KiB
Plaintext
165 lines
2.6 KiB
Plaintext
# See this wiki page for more info:
|
|
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
|
|
print_info() {
|
|
info title
|
|
info underline
|
|
|
|
# info "" distro
|
|
# info "Host" model
|
|
info "" kernel
|
|
info "" uptime
|
|
info "" packages
|
|
info "" shell
|
|
# info "Resolution" resolution
|
|
info "" wm
|
|
# info "" term
|
|
# info "" term_font
|
|
info "" cpu
|
|
# info "" gpu
|
|
info "" memory
|
|
# info "" disk
|
|
# info cols
|
|
}
|
|
|
|
# Title
|
|
title_fqdn="off"
|
|
|
|
# Kernel
|
|
kernel_shorthand="on"
|
|
|
|
# Distro
|
|
distro_shorthand="off"
|
|
os_arch="on"
|
|
|
|
# Uptime
|
|
uptime_shorthand="tiny"
|
|
|
|
# Memory
|
|
memory_percent="off"
|
|
memory_unit="mib"
|
|
|
|
# Packages
|
|
package_managers="on"
|
|
|
|
# Shell
|
|
shell_path="off"
|
|
shell_version="on"
|
|
|
|
# CPU
|
|
|
|
speed_type="bios_limit"
|
|
speed_shorthand="on"
|
|
cpu_brand="on"
|
|
cpu_speed="on"
|
|
cpu_cores="off"
|
|
cpu_temp="off"
|
|
|
|
# GPU
|
|
gpu_brand="off"
|
|
gpu_type="dedicated"
|
|
|
|
# Resolution
|
|
refresh_rate="on"
|
|
|
|
# Disk
|
|
disk_show=('/')
|
|
disk_subtitle="name"
|
|
disk_percent="on"
|
|
|
|
# Text Options
|
|
bold="on"
|
|
underline_enabled="on"
|
|
underline_char="-"
|
|
|
|
# Info Separator
|
|
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="off"
|
|
|
|
# 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
|
|
|
|
# Color Alignment
|
|
#
|
|
# Default: 'auto'
|
|
# Values: 'auto', 'num'
|
|
# Flag: --col_offset
|
|
#
|
|
# Number specifies how far from the left side of the terminal (in spaces) to
|
|
# begin printing the columns, in case you want to e.g. center them under your
|
|
# text.
|
|
# Example:
|
|
# col_offset="auto" - Default behavior of neofetch
|
|
# col_offset=7 - Leave 7 spaces then print the colors
|
|
col_offset="auto"
|
|
|
|
# Progress Bars
|
|
|
|
bar_char_elapsed="-"
|
|
bar_char_total="="
|
|
bar_border="on"
|
|
bar_length=15
|
|
bar_color_elapsed="distro"
|
|
bar_color_total="distro"
|
|
|
|
cpu_display="off"
|
|
memory_display="off"
|
|
battery_display="off"
|
|
disk_display="off"
|
|
|
|
image_backend="pot"
|
|
image_source="auto"
|
|
|
|
ascii_distro="void_small"
|
|
ascii_colors=(distro)
|
|
ascii_bold="on"
|
|
|
|
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=
|
|
|
|
stdout="off"
|