i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add neofetch

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