config.conf 17 KB

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