123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- print_info() {
- info title
- info underline
- info "OS" distro
- info "Host" model
- info "Kernel" kernel
- info "Uptime" uptime
- info "Packages" packages
- info "Shell" shell
- info "Resolution" resolution
- info "DE" de
- info "Terminal" term
- info "Terminal Font" term_font
- info "CPU" cpu
- info "Memory" memory
- info "CPU Usage" cpu_usage
- info "Disk" disk
- info "Battery" battery
- info "Font" font
- # 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_shorthand="off"
- distro_shorthand="off"
- os_arch="on"
- uptime_shorthand="off"
- memory_percent="off"
- package_managers="on"
- shell_path="off"
- shell_version="on"
- speed_type="bios_limit"
- speed_shorthand="off"
- cpu_brand="on"
- cpu_speed="on"
- cpu_cores="logical"
- cpu_temp="F"
- gpu_brand="on"
- gpu_type="all"
- refresh_rate="on"
- gtk_shorthand="off"
- gtk2="on"
- gtk3="on"
- public_ip_host="http://ident.me"
- public_ip_timeout=2
- disk_show=('/')
- disk_subtitle="mount"
- music_player="auto"
- song_format="%artist% - %album% - %title%"
- song_shorthand="off"
- mpc_args=()
- colors=(distro)
- bold="on"
- underline_enabled="on"
- underline_char="-"
- separator=":"
- block_range=(0 15)
- color_blocks="on"
- block_width=3
- block_height=1
- bar_char_elapsed="-"
- bar_char_total="="
- bar_border="on"
- bar_length=15
- bar_color_elapsed="distro"
- cpu_display="off"
- memory_display="off"
- battery_display="off"
- disk_display="off"
- #image_backend="kitty"
- #image_source=~/.config/neofetch/lfs.png
- ascii_distro="auto"
- ascii_colors=(distro)
- ascii_bold="on"
- #image_loop="off"
- thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch"
- crop_mode="fill"
- crop_offset="center"
- #image_size="auto"
- gap=3
- yoffset=0
- xoffset=0
- background_color=red
- stdout="off"
|