mirror of
https://github.com/dylanaraps/neofetch
synced 2025-06-25 00:01:24 -04:00
Compare commits
No commits in common. "master" and "2.0" have entirely different histories.
7
.github/ISSUE_TEMPLATE.md
vendored
7
.github/ISSUE_TEMPLATE.md
vendored
@ -1,16 +1,13 @@
|
|||||||
## Description
|
## Description
|
||||||
|
|
||||||
If you're suggesting a new feature then just a description will suffice.
|
Only fill in the fields below if relevant. If you're
|
||||||
|
suggesting a new feature then just a description will suffice.
|
||||||
- [ ] Does this issue still occur in the master branch? (**Required if issue**)
|
|
||||||
|
|
||||||
|
|
||||||
#### Neofetch version
|
#### Neofetch version
|
||||||
|
|
||||||
## Screenshot
|
## Screenshot
|
||||||
|
|
||||||
## Config file
|
|
||||||
|
|
||||||
## Verbose log
|
## Verbose log
|
||||||
|
|
||||||
1. Run `neofetch -vv 2> neofetchlog`
|
1. Run `neofetch -vv 2> neofetchlog`
|
||||||
|
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -2,9 +2,11 @@
|
|||||||
|
|
||||||
Only fill in the fields below if relevant.
|
Only fill in the fields below if relevant.
|
||||||
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
## Issues
|
## Issues
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,4 @@ before_install:
|
|||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- time ./neofetch --travis -v
|
- time ./neofetch --ascii --config travis --ascii_distro travis -v
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -e SC2244 -e SC2243 neofetch; fi
|
|
||||||
# Check for lines longer than 100 chars.
|
|
||||||
- if grep '.\{102\}' neofetch; then (exit 1); else (exit 0); fi
|
|
||||||
|
161
CHANGELOG.md
Normal file
161
CHANGELOG.md
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
## Neofetch 2.0
|
||||||
|
|
||||||
|
This is the biggest release of Neofetch in a long time. 97 files were changed with 2700~ additions to 2900~ deletions. Although the changelog isn't as interesting this time majority of the script has been rewritten, restructered and cleaned up. Every function and variable name follows a proper naming scheme and a large number of bugs were fixed.
|
||||||
|
|
||||||
|
Since this version of Neofetch differs so much from the previous versions expect a 2.0.1 release a few days later to fix any bugs that are found after release.
|
||||||
|
|
||||||
|
The ascii file handling was rewritten, ascii art is now stored/read as plain text! All `eval` usage was removed from Neofetch, vim fold markers/comments are no longer enforced and we now run on GNU Hurd, Haiku and more.
|
||||||
|
|
||||||
|
When I was rewriting parts of the script I thought to myself; Neofetch is using the bash shebang and does depend on bash so why not take full advantage of the features bash has to offer? All tests were changed from `[` to `[[`, arithmetic tests now use `(())` and C style for loops are used where possible.
|
||||||
|
|
||||||
|
All of the config file documentation was rewritten and multiple wiki pages were created to hopefully make using/configuring Neofetch easier than ever before. You can see the wiki here: [Neofetch Wiki](https://github.com/dylanaraps/neofetch/wiki)
|
||||||
|
|
||||||
|
Some of the config options/arguments were renamed/changed and Neofetch will warn you on run if you're using deprecated options (`neofetch -v`). For this release Neofetch **will** include backwards compatibility with the old config file but I'd like to remove this stuff in 2.1. I recommend using this release with a fresh config file so that you can make use of the new documentation.
|
||||||
|
|
||||||
|
I say this every release; This changelog is incomplete, for a full list of changes take a look through the commit history. Neofetch now has an unspoken commit style so reading the commit history won't hurt as much as it used to.
|
||||||
|
|
||||||
|
Thanks to all of the contributors this time around, you guys are a big help and I really appreciate your work towards making Neofetch better and better each release. :)
|
||||||
|
|
||||||
|
## Contributors
|
||||||
|
|
||||||
|
- **[@konimex](https://github.com/konimex)**
|
||||||
|
- **[@TonCherAmi](https://github.com/TonCherAmi)**
|
||||||
|
- **[@JorgeGonzalez](https://github.com/JorgeGonzalez)**
|
||||||
|
- **[@iandrewt](https://github.com/iandrewt)**
|
||||||
|
- **[@iwamatsu](https://github.com/iwamatsu)**
|
||||||
|
- **[@Brottweiler](https://github.com/Brottweiler)**
|
||||||
|
|
||||||
|
|
||||||
|
## Packages
|
||||||
|
|
||||||
|
- Neofetch is now in Debian's official repos.
|
||||||
|
- Neofetch is now in Ubuntu's official repos.
|
||||||
|
|
||||||
|
|
||||||
|
## General
|
||||||
|
|
||||||
|
- All functions/variables now follow the same naming scheme. `example_func_name`
|
||||||
|
- Call `uname` once and cache the output instead of calling `uname` 4-5 times.
|
||||||
|
- Cleaned up and rewrote large chunks of the script.
|
||||||
|
- Convert math tests to correct syntax.
|
||||||
|
- Fixed `--disable` and capitalized arguments.
|
||||||
|
- Fixed issue where `bold=off` wouldn't work.
|
||||||
|
- Fixed issue where info wasn't detected properly but the subtitle was still displayed.
|
||||||
|
- Fixed issue where using `--disable func func` broke other args.
|
||||||
|
- Removed all traces of `eval` from Neofetch.
|
||||||
|
- Removed all vim fold markers and stopped enforcing folding for vim users.
|
||||||
|
- See [#431](https://github.com/dylanaraps/neofetch/pull/431)
|
||||||
|
- Rewrote all of config file documentation.
|
||||||
|
- Swap all tests from `[` to `[[`.
|
||||||
|
|
||||||
|
|
||||||
|
## Operating System
|
||||||
|
|
||||||
|
- Added support for ChaletOS.
|
||||||
|
- Added support for DracOS.
|
||||||
|
- Added support for GNU Hurd. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Added support for Haiku. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Added support for Korora. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Added support for Netrunner. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Added support for Pardus.
|
||||||
|
- Added support for iPhone 7 and 7 Plus.
|
||||||
|
|
||||||
|
|
||||||
|
## Ascii
|
||||||
|
|
||||||
|
- Ascii art is no longer read as a script and is now read as plain text.
|
||||||
|
- See this wiki page about the new ascii art format.
|
||||||
|
- https://github.com/dylanaraps/neofetch/wiki/Custom-Ascii-art-file-format
|
||||||
|
- Neofetch now displays your OS's ascii logo if your distro's logo isn't found. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Example: [Linux] Tux is displayed if there's no distro ascii.
|
||||||
|
- `neofetch --ascii_distro x` now sets the mode to ascii for you. You no longer have to use a combination of `--ascii` and `--ascii_distro`.
|
||||||
|
- [Arch Linux] Changed default ascii colors.
|
||||||
|
- [Bunsenlabs] Changed default ascii colors.
|
||||||
|
- Fixed issue with Solarized and certain ascii art.
|
||||||
|
- Remove all duplicates from `get_distro_colors()`.
|
||||||
|
- Remove execution permission flag from ascii art files. **[@iwamatsu](https://github.com/iwamatsu)**
|
||||||
|
- Rename `colors()` to `get_distro_colors()`.
|
||||||
|
- Rename `setcolors()` to `set_colors()`.
|
||||||
|
- Update Netrunner ascii art.
|
||||||
|
- Added old arch ascii logo. **[@Brottweiler](https://github.com/Brottweiler)**
|
||||||
|
- Useable by using `--ascii_distro arch_old` or by editing the config.
|
||||||
|
|
||||||
|
|
||||||
|
## Images
|
||||||
|
|
||||||
|
- Fixed images not appearing in st.
|
||||||
|
- Added `to_ascii()` and `to_off()`.
|
||||||
|
- These functions are used when falling back to different image modes.
|
||||||
|
- Renamed `check_old_flags()` to `old_flags()` to match `old_functions()`.
|
||||||
|
- Split `get_image()` into `get_term_size()`, `get_image_size()`, `get_image_program()` and `make_thumbnail()`.
|
||||||
|
- Use `$XDG_CACHE_HOME` as the thumbnail dir if available.
|
||||||
|
|
||||||
|
|
||||||
|
## Wallpaper
|
||||||
|
|
||||||
|
- Added support for Cinnamon.
|
||||||
|
|
||||||
|
|
||||||
|
## Bars
|
||||||
|
|
||||||
|
- Rename all `progress_` variables to `bar_` to match the function name.
|
||||||
|
|
||||||
|
|
||||||
|
## Info
|
||||||
|
|
||||||
|
**Distro**<br \>
|
||||||
|
|
||||||
|
- [Linux] Source `/etc/*-release` files instead of having a dozen separate `awk` commands.
|
||||||
|
- We source `/etc/os-release` before falling back to `/etc/*-release`.
|
||||||
|
- Remove lsb_release detection.
|
||||||
|
- This change was made since lsb_release prints innacurate results on some distros.
|
||||||
|
- Added fallback when distro isn't found. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Example: `Linux (Unknown)`
|
||||||
|
|
||||||
|
**Packages**<br \>
|
||||||
|
|
||||||
|
- [Solus] If `pisi` is unavailable, use `eopkg`.
|
||||||
|
- Added package detection for Lunar Linux. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Added package detection for TinyCore. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Remove `/usr/games` from `$PATH` to fix issues with pacman game.
|
||||||
|
|
||||||
|
**GPU**<br \>
|
||||||
|
|
||||||
|
- GPU is now cached till reboot.
|
||||||
|
- [Linux] Prefer dedicated GPU over integrated GPU.
|
||||||
|
|
||||||
|
**Terminal**<br \>
|
||||||
|
|
||||||
|
- Added support for HyperTerm. **[@JorgeGonzalez](https://github.com/JorgeGonzalez)**
|
||||||
|
|
||||||
|
**Terminal Font**<br \>
|
||||||
|
|
||||||
|
- Added support for HyperTerm. **[@JorgeGonzalez](https://github.com/JorgeGonzalez)**
|
||||||
|
|
||||||
|
**CPU**<br \>
|
||||||
|
|
||||||
|
- [BSD] Added cpu_temp support. **[@konimex](https://github.com/konimex)**
|
||||||
|
|
||||||
|
**CPU Usage**<br \>
|
||||||
|
|
||||||
|
- [iOS] Fixed CPU usage.
|
||||||
|
|
||||||
|
**Shell**<br \>
|
||||||
|
|
||||||
|
- [bash] Simplify bash version.
|
||||||
|
|
||||||
|
**Song**<br \>
|
||||||
|
|
||||||
|
- Added support for Clementine. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Added support for GNOME Music. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Added support for Lollypop. **[@konimex](https://github.com/konimex)**
|
||||||
|
- Added support for Pragha. **[@konimex](https://github.com/konimex)**
|
||||||
|
|
||||||
|
**Public IP**<br \>
|
||||||
|
|
||||||
|
- Cache the output of the command. **[@konimex](https://github.com/konimex)**
|
||||||
|
- [dig] Fixed connection timed out with public_ip. **[@iandrewt](https://github.com/iandrewt)**
|
||||||
|
|
||||||
|
**Resolution**<br \>
|
||||||
|
|
||||||
|
- [MacOS] If refresh rate is empty don't append Hz.
|
151
CONTRIBUTING.md
151
CONTRIBUTING.md
@ -1,151 +0,0 @@
|
|||||||
# How to Contribute
|
|
||||||
|
|
||||||
<!-- vim-markdown-toc GFM -->
|
|
||||||
|
|
||||||
* [Coding Conventions](#coding-conventions)
|
|
||||||
* [ShellCheck](#shellcheck)
|
|
||||||
* [No no's](#no-nos)
|
|
||||||
* [If Statements](#if-statements)
|
|
||||||
* [Case Statements](#case-statements)
|
|
||||||
* [Making changes to Neofetch](#making-changes-to-neofetch)
|
|
||||||
* [Adding support for a new Operating System / Distribution.](#adding-support-for-a-new-operating-system--distribution)
|
|
||||||
|
|
||||||
<!-- vim-markdown-toc -->
|
|
||||||
|
|
||||||
|
|
||||||
## Coding Conventions
|
|
||||||
|
|
||||||
- Use `bash` built-ins wherever possible.
|
|
||||||
- Try not to pipe (`|`) at all.
|
|
||||||
- Limit usage of external commands `$(cmd)`.
|
|
||||||
- Indent 4 spaces.
|
|
||||||
- Use [snake_case](https://en.wikipedia.org/wiki/Snake_case) for function
|
|
||||||
and variable names.
|
|
||||||
- Keep lines below `100` characters long.
|
|
||||||
- Use `[[ ]]` for tests.
|
|
||||||
- Quote **EVERYTHING**.
|
|
||||||
|
|
||||||
### ShellCheck
|
|
||||||
|
|
||||||
For your contribution to be accepted, your changes need to pass
|
|
||||||
ShellCheck.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
shellcheck neofetch
|
|
||||||
```
|
|
||||||
|
|
||||||
**Note**: If you have trouble installing ShellCheck. You can open a pull
|
|
||||||
request on the repo and our Travis.ci hook will run ShellCheck for you.
|
|
||||||
|
|
||||||
|
|
||||||
### No no's
|
|
||||||
|
|
||||||
- Don’t use GNU conventions in commands.
|
|
||||||
- Use POSIX arguments and flags.
|
|
||||||
- Don’t use `cut`.
|
|
||||||
- Use `bash`'s built-in [parameter expansion](http://wiki.bash-hackers.org/syntax/pe).
|
|
||||||
- Don’t use `echo`.
|
|
||||||
- Use `printf "%s\n"`
|
|
||||||
- Don’t use `bc`.
|
|
||||||
- Don’t use `sed`.
|
|
||||||
- Use `bash`'s built-in [parameter expansion](http://wiki.bash-hackers.org/syntax/pe).
|
|
||||||
- Don’t use `cat`.
|
|
||||||
- Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)")`).
|
|
||||||
- Don’t use `grep "pattern" | awk '{ printf }'`.
|
|
||||||
- Use `awk '/pattern/ { printf }'`
|
|
||||||
- Don’t use `wc`.
|
|
||||||
- Use `${#var}` or `${#arr[@]}`.
|
|
||||||
|
|
||||||
|
|
||||||
### If Statements
|
|
||||||
|
|
||||||
If the test only has one command inside of it; use the compact test
|
|
||||||
syntax. Otherwise the normal `if`/`fi` is just fine.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
# Bad
|
|
||||||
if [[ "$var" ]]; then
|
|
||||||
printf "%s\n" "$var"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Good
|
|
||||||
[[ "$var" ]] && printf "%s\n" "$var"
|
|
||||||
|
|
||||||
# Also good (Use this for longer lines).
|
|
||||||
[[ "$var" ]] && \
|
|
||||||
printf "%s\n" "$var"
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
### Case Statements
|
|
||||||
|
|
||||||
Case statements need to be formatted in a specific way.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
# Good example (Notice the indentation).
|
|
||||||
case "$var" in
|
|
||||||
1) printf "%s\n" 1 ;;
|
|
||||||
2)
|
|
||||||
printf "%s\n" "1"
|
|
||||||
printf "%s\n" "2"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
printf "%s\n" "1"
|
|
||||||
printf "%s\n" "2"
|
|
||||||
printf "%s\n" "3"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
```
|
|
||||||
|
|
||||||
## Making changes to Neofetch
|
|
||||||
|
|
||||||
### Adding support for a new Operating System / Distribution.
|
|
||||||
|
|
||||||
Adding support for a new OS/Distro requires adding the Name, Logo and
|
|
||||||
Colors of the OS/Distro to the `get_distro_ascii()` function.
|
|
||||||
|
|
||||||
The function is located right at the bottom of the script, one function
|
|
||||||
above `main()`. Inside this function you’ll find an alphabetical list of
|
|
||||||
each OS/Distro.
|
|
||||||
|
|
||||||
Find the spot in the list your new OS/Distro fits into and start
|
|
||||||
implementing your changes.
|
|
||||||
|
|
||||||
If your OS/Distro requires changes to the actual information gathering
|
|
||||||
functions then you can make these changes in the `get_*` functions.
|
|
||||||
|
|
||||||
**Syntax**:
|
|
||||||
|
|
||||||
- You have to escape back-slashes (`\`). (eg `\\`)
|
|
||||||
- You can use `${c1}` to `${c6}`to color the ascii.
|
|
||||||
- These are evaluated *after* we read the file.
|
|
||||||
|
|
||||||
|
|
||||||
**Example**:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
"CRUX"*)
|
|
||||||
set_colors 4 5 7 6
|
|
||||||
read -rd '' ascii_data <<'EOF'
|
|
||||||
${c1} odddd
|
|
||||||
oddxkkkxxdoo
|
|
||||||
ddcoddxxxdoool
|
|
||||||
xdclodod olol
|
|
||||||
xoc xdd olol
|
|
||||||
xdc ${c2}k00${c1}Okdlol
|
|
||||||
xxd${c2}kOKKKOkd${c1}ldd
|
|
||||||
xdco${c2}xOkdlo${c1}dldd
|
|
||||||
ddc:cl${c2}lll${c1}oooodo
|
|
||||||
odxxdd${c3}xkO000kx${c1}ooxdo
|
|
||||||
oxdd${c3}x0NMMMMMMWW0od${c1}kkxo
|
|
||||||
oooxd${c3}0WMMMMMMMMMW0o${c1}dxkx
|
|
||||||
docldkXW${c3}MMMMMMMWWN${c1}Odolco
|
|
||||||
xx${c2}dx${c1}kxxOKN${c3}WMMWN${c1}0xdoxo::c
|
|
||||||
${c2}xOkkO${c1}0oo${c3}odOW${c2}WW${c1}XkdodOxc:l
|
|
||||||
${c2}dkkkxkkk${c3}OKX${c2}NNNX0Oxx${c1}xc:cd
|
|
||||||
${c2} odxxdx${c3}xllod${c2}ddooxx${c1}dc:ldo
|
|
||||||
${c2} lodd${c1}dolccc${c2}ccox${c1}xoloo
|
|
||||||
EOF
|
|
||||||
;;
|
|
||||||
```
|
|
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2015-2021 Dylan Araps
|
Copyright (c) 2016 Dylan Araps
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
@ -9,9 +9,6 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|||||||
copies of the Software, and to permit persons to whom the Software is
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
furnished to do so, subject to the following conditions:
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
28
Makefile
28
Makefile
@ -1,16 +1,24 @@
|
|||||||
PREFIX = /usr
|
PREFIX ?= /usr
|
||||||
MANDIR = $(PREFIX)/share/man
|
RM ?= rm -f
|
||||||
|
INSTALL_DIR ?= install -m755 -d
|
||||||
|
INSTALL_PROG ?= install -m755
|
||||||
|
INSTALL_FILE ?= install -m644
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@echo Run \'make install\' to install Neofetch.
|
@echo Run \'make install\' to install Neofetch
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
$(INSTALL_DIR) $(DESTDIR)$(PREFIX)/bin
|
||||||
@mkdir -p $(DESTDIR)$(MANDIR)/man1
|
$(INSTALL_DIR) $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro
|
||||||
@cp -p neofetch $(DESTDIR)$(PREFIX)/bin/neofetch
|
$(INSTALL_DIR) $(DESTDIR)$(PREFIX)/share/man/man1
|
||||||
@cp -p neofetch.1 $(DESTDIR)$(MANDIR)/man1
|
$(INSTALL_PROG) neofetch $(DESTDIR)$(PREFIX)/bin/neofetch
|
||||||
@chmod 755 $(DESTDIR)$(PREFIX)/bin/neofetch
|
$(INSTALL_FILE) neofetch.1 $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1
|
||||||
|
$(INSTALL_PROG) config/config $(DESTDIR)$(PREFIX)/share/neofetch/config
|
||||||
|
$(INSTALL_FILE) ascii/distro/* $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@rm -rf $(DESTDIR)$(PREFIX)/bin/neofetch
|
$(RM) $(DESTDIR)$(PREFIX)/bin/neofetch
|
||||||
@rm -rf $(DESTDIR)$(MANDIR)/man1/neofetch.1*
|
$(RM) $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1
|
||||||
|
$(RM) -r $(DESTDIR)$(PREFIX)/share/neofetch
|
||||||
|
|
||||||
|
|
||||||
|
124
README.md
124
README.md
@ -1,25 +1,117 @@
|
|||||||
<h3 align="center"><img src="https://i.imgur.com/ZQI2EYz.png" alt="logo" height="100px"></h3>
|
# Neofetch
|
||||||
<p align="center">A command-line system information tool written in bash 3.2+</p>
|
|
||||||
|
|
||||||
<p align="center">
|
[](https://gitter.im/dylanaraps/fetch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [](https://travis-ci.org/dylanaraps/neofetch) [](./LICENSE.md) [](https://github.com/dylanaraps/neofetch/releases)
|
||||||
<a href="./LICENSE.md"><img src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
|
|
||||||
<a href="https://github.com/dylanaraps/neofetch/releases"><img src="https://img.shields.io/github/release/dylanaraps/neofetch.svg"></a>
|
|
||||||
<a href="https://repology.org/metapackage/neofetch"><img src="https://repology.org/badge/tiny-repos/neofetch.svg" alt="Packaging status"></a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<img src="https://i.imgur.com/GFmC5Ad.png" alt="neofetch" align="right" height="240px">
|
Neofetch is a CLI system information tool written in BASH. Neofetch displays information about your system next to an image, your OS logo, or any ascii file of your choice. The main purpose of neofetch is to be used in screenshots to show other users what OS/Distro you're running, what Theme/Icons you're using and etc.
|
||||||
|
|
||||||
Neofetch is a command-line system information tool written in `bash 3.2+`. Neofetch displays information about your operating system, software and hardware in an aesthetic and visually pleasing way.
|
Neofetch is highly customizable through the use of commandline flags or the user config file. There are over 50 config options to mess around with and there's the `print_info()` function and friends which let you add your own custom info.
|
||||||
|
|
||||||
The overall purpose of Neofetch is to be used in screen-shots of your system. Neofetch shows the information other people want to see. There are other tools available for proper system statistic/diagnostics.
|
Neofetch can be used on any OS that has BASH, it's just a matter of adding support. If your OS/Distro isn't in the list below, feel free to open an issue on the repo and I'll gladly add support. Neofetch currently supports `Linux`, `MacOS`, `iOS`, `BSD`, `Solaris`, `Android`, `Haiku`, `GNU Hurd` and `Windows (Cygwin/Windows 10 Linux subsystem)`.
|
||||||
|
|
||||||
The information by default is displayed alongside your operating system's logo. You can further configure Neofetch to instead use an image, a custom ASCII file, your wallpaper or nothing at all.
|
For more information:
|
||||||
|
|
||||||
<img src="https://i.imgur.com/lUrkQBN.png" alt="neofetch" align="right" height="240px">
|
**https://github.com/dylanaraps/neofetch/wiki**
|
||||||
|
|
||||||
You can further configure Neofetch to display exactly what you want it to. Through the use of command-line flags and the configuration file you can change existing information outputs or add your own custom ones.
|

|
||||||
|
|
||||||
Neofetch supports almost 150 different operating systems. From Linux to Windows, all the way to more obscure operating systems like Minix, AIX and Haiku. If your favourite operating system is unsupported: Open up an issue and support will be added.
|
|
||||||
|
|
||||||
|
|
||||||
### More: \[[Dependencies](https://github.com/dylanaraps/neofetch/wiki/Dependencies)\] \[[Installation](https://github.com/dylanaraps/neofetch/wiki/Installation)\] \[[Wiki](https://github.com/dylanaraps/neofetch/wiki)\]
|
## Dependencies
|
||||||
|
|
||||||
|
https://github.com/dylanaraps/neofetch/wiki/Dependencies
|
||||||
|
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
https://github.com/dylanaraps/neofetch/wiki/Installation
|
||||||
|
|
||||||
|
|
||||||
|
## Post Install
|
||||||
|
|
||||||
|
|
||||||
|
### Using the config file
|
||||||
|
|
||||||
|
Neofetch will by default create a config file at `$HOME/.config/neofetch/config` and this file contains all of the script's options/settings. The config file allows you to keep your customizations between script versions and allows you to easily share your customizations with other people.
|
||||||
|
|
||||||
|
You can launch the script without a config file by using the flag `--config none` and you can specify a custom config location using `--config path/to/config`.
|
||||||
|
|
||||||
|
|
||||||
|
### Customizing what info gets displayed
|
||||||
|
|
||||||
|
https://github.com/dylanaraps/fetch/wiki/Customizing-Info
|
||||||
|
|
||||||
|
|
||||||
|
### Customizing the script using a custom alias
|
||||||
|
|
||||||
|
If you don't want to use the config file you can customize almost everything using launch flags!
|
||||||
|
|
||||||
|
Here's an example neofetch alias:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
alias neofetch2="neofetch \
|
||||||
|
--config off \
|
||||||
|
--block_range 1 8 \
|
||||||
|
--bold off \
|
||||||
|
--uptime_shorthand on \
|
||||||
|
--gtk_shorthand on \
|
||||||
|
--colors 4 1 8 8 8 7 \
|
||||||
|
"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Frequently Asked Questions
|
||||||
|
|
||||||
|
|
||||||
|
### How do I enable screenfetch mode?
|
||||||
|
|
||||||
|
Launching the script with `--ascii` or setting `image="ascii"` inside the config file will launch the script in "screenfetch mode". The script will display your distro's ascii next to the info, exactly like screenfetch.
|
||||||
|
|
||||||
|
**NOTE:** If you **don't** have an image-mode dependency installed screenfetch mode will be used automatically.
|
||||||
|
|
||||||
|
### Why doesn't Neofetch support my wallpaper setter?
|
||||||
|
|
||||||
|
It's hard to add support for other wallpaper setters as they don't provide a way of getting the current wallpaper from the cli.
|
||||||
|
|
||||||
|
If your wallpaper setter **does** provide a way of getting the current wallpaper or you know where the wallpaper is stored then adding support won't be a problem!
|
||||||
|
|
||||||
|
|
||||||
|
## Issues and Workarounds
|
||||||
|
|
||||||
|
### getgpu doesn't show my exact video card name
|
||||||
|
|
||||||
|
If your `lspci | grep "VGA"` output looks like this:
|
||||||
|
|
||||||
|
```
|
||||||
|
01:00.0 VGA compatible controller: NVIDIA Corporation Device 1401 (rev a1)
|
||||||
|
```
|
||||||
|
|
||||||
|
Instead of this:
|
||||||
|
|
||||||
|
```
|
||||||
|
01:00.0 VGA compatible controller: NVIDIA Corporation GM206 [GeForce GTX 960] (rev a1)
|
||||||
|
```
|
||||||
|
|
||||||
|
Then you're affected by the issue.
|
||||||
|
|
||||||
|
This is caused by your `/usr/share/misc/pci.ids*` files being outdated and you can fix it by running this command as root.
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo update-pciids
|
||||||
|
```
|
||||||
|
|
||||||
|
### Neofetch doesn't work correctly with ConEmu.
|
||||||
|
|
||||||
|
You need to be using the CYGWIN/Msys connector for Neofetch to work seamlessly with ConEmu.
|
||||||
|
|
||||||
|
https://conemu.github.io/en/CygwinMsysConnector.html
|
||||||
|
|
||||||
|
|
||||||
|
## Thanks
|
||||||
|
|
||||||
|
Thanks to:
|
||||||
|
|
||||||
|
- [Screenfetch](https://github.com/KittyKatt/screenFetch):
|
||||||
|
- I've used some snippets as a base for a few functions in this script.
|
||||||
|
- Some of the ascii logos.
|
||||||
|
- [ufetch](https://github.com/jschx/ufetch):
|
||||||
|
- Tiny ascii logos
|
||||||
|
- Everyone else helped out in one way or another. I'd list all of the names but there's just too many of you. :)
|
||||||
|
20
ascii/distro/alpine
Normal file
20
ascii/distro/alpine
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} .hddddddddddddddddddddddh.
|
||||||
|
:dddddddddddddddddddddddddd:
|
||||||
|
/dddddddddddddddddddddddddddd/
|
||||||
|
+dddddddddddddddddddddddddddddd+
|
||||||
|
`sdddddddddddddddddddddddddddddddds`
|
||||||
|
`ydddddddddddd++hdddddddddddddddddddy`
|
||||||
|
.hddddddddddd+` `+ddddh:-sdddddddddddh.
|
||||||
|
hdddddddddd+` `+y: .sddddddddddh
|
||||||
|
ddddddddh+` `//` `.` -sddddddddd
|
||||||
|
ddddddh+` `/hddh/` `:s- -sddddddd
|
||||||
|
ddddh+` `/+/dddddh/` `+s- -sddddd
|
||||||
|
ddd+` `/o` :dddddddh/` `oy- .yddd
|
||||||
|
hdddyo+ohddyosdddddddddho+oydddy++ohdddh
|
||||||
|
.hddddddddddddddddddddddddddddddddddddh.
|
||||||
|
`yddddddddddddddddddddddddddddddddddy`
|
||||||
|
`sdddddddddddddddddddddddddddddddds`
|
||||||
|
+dddddddddddddddddddddddddddddd+
|
||||||
|
/dddddddddddddddddddddddddddd/
|
||||||
|
:dddddddddddddddddddddddddd:
|
||||||
|
.hddddddddddddddddddddddh.
|
13
ascii/distro/android
Normal file
13
ascii/distro/android
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
${c1} ╲ ▁▂▂▂▁ ╱
|
||||||
|
▄███████▄
|
||||||
|
▄██${c2} ${c1}███${c2} ${c1}██▄
|
||||||
|
▄███████████▄
|
||||||
|
▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄ █▄
|
||||||
|
██ █████████████ ██
|
||||||
|
██ █████████████ ██
|
||||||
|
██ █████████████ ██
|
||||||
|
██ █████████████ ██
|
||||||
|
█████████████
|
||||||
|
███████████
|
||||||
|
██ ██
|
||||||
|
██ ██
|
19
ascii/distro/antergos
Normal file
19
ascii/distro/antergos
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c2} `.-/::/-``
|
||||||
|
.-/osssssssso/.
|
||||||
|
:osyysssssssyyys+-
|
||||||
|
`.+yyyysssssssssyyyyy+.
|
||||||
|
`/syyyyyssssssssssyyyyys-`
|
||||||
|
`/yhyyyyysss${c1}++${c2}ssosyyyyhhy/`
|
||||||
|
.ohhhyyyys${c1}o++/+o${c2}so${c1}+${c2}syy${c1}+${c2}shhhho.
|
||||||
|
.shhhhys${c1}oo++//+${c2}sss${c1}+++${c2}yyy${c1}+s${c2}hhhhs.
|
||||||
|
-yhhhhs${c1}+++++++o${c2}ssso${c1}+++${c2}yyy${c1}s+o${c2}hhddy:
|
||||||
|
-yddhhy${c1}o+++++o${c2}syyss${c1}++++${c2}yyy${c1}yooy${c2}hdddy-
|
||||||
|
.yddddhs${c1}o++o${c2}syyyyys${c1}+++++${c2}yyhh${c1}sos${c2}hddddy`
|
||||||
|
`odddddhyosyhyyyyyy${c1}++++++${c2}yhhhyosddddddo
|
||||||
|
.dmdddddhhhhhhhyyyo${c1}+++++${c2}shhhhhohddddmmh.
|
||||||
|
ddmmdddddhhhhhhhso${c1}++++++${c2}yhhhhhhdddddmmdy
|
||||||
|
dmmmdddddddhhhyso${c1}++++++${c2}shhhhhddddddmmmmh
|
||||||
|
-dmmmdddddddhhys${c1}o++++o${c2}shhhhdddddddmmmmd-
|
||||||
|
.smmmmddddddddhhhhhhhhhdddddddddmmmms.
|
||||||
|
`+ydmmmdddddddddddddddddddmmmmdy/.
|
||||||
|
`.:+ooyyddddddddddddyyso+:.`
|
19
ascii/distro/arch
Normal file
19
ascii/distro/arch
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} -`
|
||||||
|
.o+`
|
||||||
|
`ooo/
|
||||||
|
`+oooo:
|
||||||
|
`+oooooo:
|
||||||
|
-+oooooo+:
|
||||||
|
`/:-:++oooo+:
|
||||||
|
`/++++/+++++++:
|
||||||
|
`/++++++++++++++:
|
||||||
|
`/+++ooooooooooooo/`
|
||||||
|
./ooosssso++osssssso+`
|
||||||
|
.oossssso-````/ossssss+`
|
||||||
|
-osssssso. :ssssssso.
|
||||||
|
:osssssss/ osssso+++.
|
||||||
|
/ossssssss/ +ssssooo/-
|
||||||
|
`/ossssso+/:- -:/+osssso+-
|
||||||
|
`+sso+:-` `.-/+oso:
|
||||||
|
`++:. `-/+/
|
||||||
|
.` `/
|
16
ascii/distro/arch_old
Normal file
16
ascii/distro/arch_old
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c1} __
|
||||||
|
_=(SDGJT=_
|
||||||
|
_GTDJHGGFCVS)
|
||||||
|
,GTDJGGDTDFBGX0
|
||||||
|
${c1} JDJDIJHRORVFSBSVL${c2}-=+=,_
|
||||||
|
${c1} IJFDUFHJNXIXCDXDSV,${c2} "DEBL
|
||||||
|
${c1} [LKDSDJTDU=OUSCSBFLD.${c2} '?ZWX,
|
||||||
|
${c1} ,LMDSDSWH' `DCBOSI${c2} DRDS],
|
||||||
|
${c1} SDDFDFH' !YEWD,${c2} )HDROD
|
||||||
|
${c1} !KMDOCG &GSU|${c2}\_GFHRGO\'
|
||||||
|
${c1} HKLSGP'${c2} __${c1}\TKM0${c2}\GHRBV)'
|
||||||
|
${c1}JSNRVW'${c2} __+MNAEC${c1}\IOI,${c2}\BN'
|
||||||
|
${c1}HELK['${c2} __,=OFFXCBGHC${c1}\FD)
|
||||||
|
${c1}?KGHE ${c2}\_-#DASDFLSV='${c1} 'EF
|
||||||
|
'EHTI !H
|
||||||
|
`0F' '!
|
7
ascii/distro/arch_small
Normal file
7
ascii/distro/arch_small
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
${c1} /\
|
||||||
|
/^^\
|
||||||
|
/\ \
|
||||||
|
/${c2} __ \
|
||||||
|
/ ( ) \
|
||||||
|
/ __| |__\\\
|
||||||
|
/// \\\\\
|
18
ascii/distro/bitrig
Normal file
18
ascii/distro/bitrig
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} `hMMMMN+
|
||||||
|
-MMo-dMd`
|
||||||
|
oMN- oMN`
|
||||||
|
yMd /NM:
|
||||||
|
.mMmyyhMMs
|
||||||
|
:NMMMhsmMh
|
||||||
|
+MNhNNoyMm-
|
||||||
|
hMd.-hMNMN:
|
||||||
|
mMmsssmMMMo
|
||||||
|
.MMdyyhNMMMd
|
||||||
|
oMN.`/dMddMN`
|
||||||
|
yMm/hNm+./MM/
|
||||||
|
.dMMMmo.``.NMo
|
||||||
|
:NMMMNmmmmmMMh
|
||||||
|
/MN/-------oNN:
|
||||||
|
hMd. .dMh
|
||||||
|
sm/ /ms
|
||||||
|
|
17
ascii/distro/blag
Normal file
17
ascii/distro/blag
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c1} d
|
||||||
|
,MK:
|
||||||
|
xMMMX:
|
||||||
|
.NMMMMMX;
|
||||||
|
lMMMMMMMM0clodkO0KXWW:
|
||||||
|
KMMMMMMMMMMMMMMMMMMX'
|
||||||
|
.;d0NMMMMMMMMMMMMMMMMMMK.
|
||||||
|
.;dONMMMMMMMMMMMMMMMMMMMMMMx
|
||||||
|
'dKMMMMMMMMMMMMMMMMMMMMMMMMl
|
||||||
|
.:xKWMMMMMMMMMMMMMMMMMMM0.
|
||||||
|
.:xNMMMMMMMMMMMMMMMMMK.
|
||||||
|
lMMMMMMMMMMMMMMMMMMK.
|
||||||
|
,MMMMMMMMWkOXWMMMMMM0
|
||||||
|
.NMMMMMNd. `':ldko
|
||||||
|
OMMMK:
|
||||||
|
oWk,
|
||||||
|
;:
|
17
ascii/distro/blankon
Normal file
17
ascii/distro/blankon
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c2} `./ohdNMMMMNmho+.` ${c1} .+oo:`
|
||||||
|
${c2} -smMMMMMMMMMMMMMMMMmy-` ${c1}`yyyyy+
|
||||||
|
${c2} `:dMMMMMMMMMMMMMMMMMMMMMMd/` ${c1}`yyyyys
|
||||||
|
${c2} .hMMMMMMMNmhso/++symNMMMMMMMh- ${c1}`yyyyys
|
||||||
|
${c2} -mMMMMMMms-` -omMMMMMMN-${c1}.yyyyys
|
||||||
|
${c2}.mMMMMMMy. .yMMMMMMm:${c1}yyyyys
|
||||||
|
${c2}sMMMMMMy `sMMMMMMh${c1}yyyyys
|
||||||
|
${c2}NMMMMMN: .NMMMMMN${c1}yyyyys
|
||||||
|
${c2}MMMMMMm. NMMMMMN${c1}yyyyys
|
||||||
|
${c2}hMMMMMM+ /MMMMMMN${c1}yyyyys
|
||||||
|
${c2}:NMMMMMN: :mMMMMMM+${c1}yyyyys
|
||||||
|
${c2} oMMMMMMNs- .sNMMMMMMs.${c1}yyyyys
|
||||||
|
${c2} +MMMMMMMNho:.` `.:ohNMMMMMMNo ${c1}`yyyyys
|
||||||
|
${c2} -hMMMMMMMMNNNmmNNNMMMMMMMMh- ${c1}`yyyyys
|
||||||
|
${c2} :yNMMMMMMMMMMMMMMMMMMNy:` ${c1}`yyyyys
|
||||||
|
${c2} .:sdNMMMMMMMMMMNds/. ${c1}`yyyyyo
|
||||||
|
${c2} `.:/++++/:.` ${c1}:oys+.
|
19
ascii/distro/bsd
Normal file
19
ascii/distro/bsd
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} , ,
|
||||||
|
/( )`
|
||||||
|
\ \___ / |
|
||||||
|
/- _ `-/ '
|
||||||
|
(${c2}/\/ \ ${c1}\ /\
|
||||||
|
${c2}/ / | ` ${c1}\
|
||||||
|
${c3}O O ${c2}) ${c1}/ |
|
||||||
|
${c2}`-^--'${c1}`< '
|
||||||
|
(_.) _ ) /
|
||||||
|
`.___/` /
|
||||||
|
`-----' /
|
||||||
|
${c4}<----. __ / __ \
|
||||||
|
${c4}<----|====${c1}O)))${c4}==${c1}) \) /${c4}====|
|
||||||
|
<----' ${c1}`--' `.__,' \
|
||||||
|
| |
|
||||||
|
\ / /\
|
||||||
|
${c5}______${c1}( (_ / \______/
|
||||||
|
${c5},' ,-----' |
|
||||||
|
`--{__________)
|
20
ascii/distro/bunsenlabs
Normal file
20
ascii/distro/bunsenlabs
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} `++
|
||||||
|
-yMMs
|
||||||
|
`yMMMMN`
|
||||||
|
-NMMMMMMm.
|
||||||
|
:MMMMMMMMMN-
|
||||||
|
.NMMMMMMMMMMM/
|
||||||
|
yMMMMMMMMMMMMM/
|
||||||
|
`MMMMMMNMMMMMMMN.
|
||||||
|
-MMMMN+ /mMMMMMMy
|
||||||
|
-MMMm` `dMMMMMM
|
||||||
|
`MMN. .NMMMMM.
|
||||||
|
hMy yMMMMM`
|
||||||
|
-Mo +MMMMN
|
||||||
|
/o +MMMMs
|
||||||
|
+MMMN`
|
||||||
|
hMMM:
|
||||||
|
`NMM/
|
||||||
|
+MN:
|
||||||
|
mh.
|
||||||
|
-/
|
19
ascii/distro/centos
Normal file
19
ascii/distro/centos
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} ..
|
||||||
|
.PLTJ.
|
||||||
|
<><><><>
|
||||||
|
${c2}KKSSV' 4KKK ${c1}LJ${c4} KKKL.'VSSKK
|
||||||
|
${c2}KKV' 4KKKKK ${c1}LJ${c4} KKKKAL 'VKK
|
||||||
|
${c2}V' ' 'VKKKK ${c1}LJ${c4} KKKKV' ' 'V
|
||||||
|
${c2}.4MA.' 'VKK ${c1}LJ${c4} KKV' '.4Mb.
|
||||||
|
${c4} . ${c2}KKKKKA.' 'V ${c1}LJ${c4} V' '.4KKKKK ${c3}.
|
||||||
|
${c4} .4D ${c2}KKKKKKKA.'' ${c1}LJ${c4} ''.4KKKKKKK ${c3}FA.
|
||||||
|
${c4}<QDD ++++++++++++ ${c3}++++++++++++ GFD>
|
||||||
|
${c4} 'VD ${c3}KKKKKKKK'.. ${c2}LJ ${c1}..'KKKKKKKK ${c3}FV
|
||||||
|
${c4} ' ${c3}VKKKKK'. .4 ${c2}LJ ${c1}K. .'KKKKKV ${c3}'
|
||||||
|
${c3} 'VK'. .4KK ${c2}LJ ${c1}KKA. .'KV'
|
||||||
|
${c3}A. . .4KKKK ${c2}LJ ${c1}KKKKA. . .4
|
||||||
|
${c3}KKA. 'KKKKK ${c2}LJ ${c1}KKKKK' .4KK
|
||||||
|
${c3}KKSSA. VKKK ${c2}LJ ${c1}KKKV .4SSKK
|
||||||
|
${c2} <><><><>
|
||||||
|
'MKKM'
|
||||||
|
''
|
18
ascii/distro/chakra
Normal file
18
ascii/distro/chakra
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} _ _ _ "kkkkkkkk.
|
||||||
|
,kkkkkkkk., 'kkkkkkkkk,
|
||||||
|
,kkkkkkkkkkkk., 'kkkkkkkkk.
|
||||||
|
,kkkkkkkkkkkkkkkk,'kkkkkkkk,
|
||||||
|
,kkkkkkkkkkkkkkkkkkk'kkkkkkk.
|
||||||
|
"''"''',;::,,"''kkk''kkkkk; __
|
||||||
|
,kkkkkkkkkk, "k''kkkkk' ,kkkk
|
||||||
|
,kkkkkkk' ., ' .: 'kkkk',kkkkkk
|
||||||
|
,kkkkkkkk'.k' , ,kkkk;kkkkkkkkk
|
||||||
|
,kkkkkkkk';kk 'k "'k',kkkkkkkkkkkk
|
||||||
|
.kkkkkkkkk.kkkk.'kkkkkkkkkkkkkkkkkk'
|
||||||
|
;kkkkkkkk''kkkkkk;'kkkkkkkkkkkkk''
|
||||||
|
'kkkkkkk; 'kkkkkkkk.,""''"''""
|
||||||
|
''kkkk; 'kkkkkkkkkk.,
|
||||||
|
';' 'kkkkkkkkkkkk.,
|
||||||
|
';kkkkkkkkkk'
|
||||||
|
';kkkkkk'
|
||||||
|
"''"
|
20
ascii/distro/chaletos
Normal file
20
ascii/distro/chaletos
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} `.//+osso+/:``
|
||||||
|
`/sdNNmhyssssydmNNdo:`
|
||||||
|
:hNmy+-` .-+hNNs-
|
||||||
|
/mMh/` `+:` `+dMd:
|
||||||
|
.hMd- -sNNMNo. /yyy /mMs`
|
||||||
|
-NM+ `/dMd/--omNh::dMM `yMd`
|
||||||
|
.NN+ .sNNs:/dMNy:/hNmo/s yMd`
|
||||||
|
hMs `/hNd+-smMMMMMMd+:omNy- `dMo
|
||||||
|
:NM. .omMy:/hNMMMMMMMMMMNy:/hMd+` :Md`
|
||||||
|
/Md` `sm+.omMMMMMMMMMMMMMMMMd/-sm+ .MN:
|
||||||
|
/Md` MMMMMMMMMMMMMMMMMMMN .MN:
|
||||||
|
:NN. MMMMMMm....--NMMMMMN -Mm.
|
||||||
|
`dMo MMMMMMd mMMMMMN hMs
|
||||||
|
-MN: MMMMMMd mMMMMMN oMm`
|
||||||
|
:NM: MMMMMMd mMMMMMN +Mm-
|
||||||
|
-mMy. mmmmmmh dmmmmmh -hMh.
|
||||||
|
oNNs- :yMm/
|
||||||
|
.+mMdo:` `:smMd/`
|
||||||
|
-ohNNmhsoo++osshmNNh+.
|
||||||
|
`./+syyhhyys+:``
|
18
ascii/distro/chapeau
Normal file
18
ascii/distro/chapeau
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} .-/-.
|
||||||
|
////////.
|
||||||
|
////////${c2}y+${c1}//.
|
||||||
|
////////${c2}mMN${c1}/////.
|
||||||
|
////////${c2}mMN+${c1}////////.
|
||||||
|
////////////////////////.
|
||||||
|
/////////+${c2}shhddhyo${c1}+////////.
|
||||||
|
////////${c2}ymMNmdhhdmNNdo${c1}///////.
|
||||||
|
///////+${c2}mMms${c1}////////${c2}hNMh${c1}///////.
|
||||||
|
///////${c2}NMm+${c1}//////////${c2}sMMh${c1}///////
|
||||||
|
//////${c2}oMMNmmmmmmmmmmmmMMm${c1}///////
|
||||||
|
//////${c2}+MMmssssssssssssss+${c1}///////
|
||||||
|
`//////${c2}yMMy${c1}////////////////////
|
||||||
|
`//////${c2}smMNhso++oydNm${c1}////////
|
||||||
|
`///////${c2}ohmNMMMNNdy+${c1}///////
|
||||||
|
`//////////${c2}++${c1}//////////
|
||||||
|
`////////////////.
|
||||||
|
-////////-
|
18
ascii/distro/chrome
Normal file
18
ascii/distro/chrome
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c2} .,:loool:,.
|
||||||
|
.,coooooooooooooc,.
|
||||||
|
.,lllllllllllllllllllll,.
|
||||||
|
;ccccccccccccccccccccccccc;
|
||||||
|
${c1} '${c2}ccccccccccccccccccccccccccccc.
|
||||||
|
${c1} ,oo${c2}c::::::::okO${c5}000${c3}0OOkkkkkkkkkkk:
|
||||||
|
${c1}.ooool${c2};;;;:x${c5}K0${c4}kxxxxxk${c5}0X${c3}K0000000000.
|
||||||
|
${c1}:oooool${c2};,;O${c5}K${c4}ddddddddddd${c5}KX${c3}000000000d
|
||||||
|
${c1}lllllool${c2};l${c5}N${c4}dllllllllllld${c5}N${c3}K000000000
|
||||||
|
${c1}lllllllll${c2}o${c5}M${c4}dccccccccccco${c5}W${c3}K000000000
|
||||||
|
${c1};cllllllllX${c5}X${c4}c:::::::::c${c5}0X${c3}000000000d
|
||||||
|
${c1}.ccccllllllO${c5}Nk${c4}c;,,,;cx${c5}KK${c3}0000000000.
|
||||||
|
${c1} .cccccclllllxOO${c5}OOO${c1}Okx${c3}O0000000000;
|
||||||
|
${c1} .:ccccccccllllllllo${c3}O0000000OOO,
|
||||||
|
${c1} ,:ccccccccclllcd${c3}0000OOOOOOl.
|
||||||
|
${c1} '::ccccccccc${c3}dOOOOOOOkx:.
|
||||||
|
${c1} ..,::cccc${c3}xOOOkkko;.
|
||||||
|
${c1} ..,:${c3}dOkxl:.
|
18
ascii/distro/crux
Normal file
18
ascii/distro/crux
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} odddd
|
||||||
|
oddxkkkxxdoo
|
||||||
|
ddcoddxxxdoool
|
||||||
|
xdclodod olol
|
||||||
|
xoc xdd olol
|
||||||
|
xdc ${c2}k00${c1}Okdlol
|
||||||
|
xxd${c2}kOKKKOkd${c1}ldd
|
||||||
|
xdco${c2}xOkdlo${c1}dldd
|
||||||
|
ddc:cl${c2}lll${c1}oooodo
|
||||||
|
odxxdd${c3}xkO000kx${c1}ooxdo
|
||||||
|
oxdd${c3}x0NMMMMMMWW0od${c1}kkxo
|
||||||
|
oooxd${c3}0WMMMMMMMMMW0o${c1}dxkx
|
||||||
|
docldkXW${c3}MMMMMMMWWN${c1}Odolco
|
||||||
|
xx${c2}dx${c1}kxxOKN${c3}WMMWN${c1}0xdoxo::c
|
||||||
|
${c2}xOkkO${c1}0oo${c3}odOW${c2}WW${c1}XkdodOxc:l
|
||||||
|
${c2}dkkkxkkk${c3}OKX${c2}NNNX0Oxx${c1}xc:cd
|
||||||
|
${c2} odxxdx${c3}xllod${c2}ddooxx${c1}dc:ldo
|
||||||
|
${c2} lodd${c1}dolccc${c2}ccox${c1}xoloo
|
7
ascii/distro/crux_small
Normal file
7
ascii/distro/crux_small
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
${c1} ___
|
||||||
|
(${c3}.· ${c1}|
|
||||||
|
(${c2}<> ${c1}|
|
||||||
|
/ ${c3}__ ${c1}\\
|
||||||
|
( ${c3}/ \\ ${c1}/|
|
||||||
|
${c2}_${c1}/\\ ${c3}__)${c1}/${c2}_${c1})
|
||||||
|
${c2}\/${c1}-____${c2}\/
|
17
ascii/distro/debian
Normal file
17
ascii/distro/debian
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c2} _,met$$$$$gg.
|
||||||
|
,g$$$$$$$$$$$$$$$P.
|
||||||
|
,g$$P" """Y$$.".
|
||||||
|
,$$P' `$$$.
|
||||||
|
',$$P ,ggs. `$$b:
|
||||||
|
`d$$' ,$P"' ${c1}.${c2} $$$
|
||||||
|
$$P d$' ${c1},${c2} $$P
|
||||||
|
$$: $$. ${c1}-${c2} ,d$$'
|
||||||
|
$$; Y$b._ _,d$P'
|
||||||
|
Y$$. ${c1}`.${c2}`"Y$$$$P"'
|
||||||
|
${c2} `$$b ${c1}"-.__
|
||||||
|
${c2} `Y$$
|
||||||
|
`Y$$.
|
||||||
|
`$$b.
|
||||||
|
`Y$$b.
|
||||||
|
`"Y$b._
|
||||||
|
`"""
|
18
ascii/distro/deepin
Normal file
18
ascii/distro/deepin
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} ............
|
||||||
|
.';;;;;. .,;,.
|
||||||
|
.,;;;;;;;. ';;;;;;;.
|
||||||
|
.;::::::::' .,::;;,''''',.
|
||||||
|
,'.:::::::: .;;'. ';
|
||||||
|
;' 'cccccc, ,' :: '.. .:
|
||||||
|
,, :ccccc. ;: .c, '' :. ,;
|
||||||
|
.l. cllll' ., .lc :; .l' l.
|
||||||
|
.c :lllc ;cl: .l' .ll. :'
|
||||||
|
.l 'looc. . ,o: 'oo' c,
|
||||||
|
.o. .:ool::coc' .ooo' o.
|
||||||
|
:: ..... .;dddo ;c
|
||||||
|
l:... .';lddddo. ,o
|
||||||
|
lxxxxxdoolllodxxxxxxxxxc :l
|
||||||
|
,dxxxxxxxxxxxxxxxxxxl. 'o,
|
||||||
|
,dkkkkkkkkkkkkko;. .;o;
|
||||||
|
.;okkkkkdl;. .,cl:.
|
||||||
|
.,:cccccccc:,.
|
15
ascii/distro/devuan
Normal file
15
ascii/distro/devuan
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
${c1} ..,,;;;::;,..
|
||||||
|
`':ddd;:,.
|
||||||
|
`'dPPd:,.
|
||||||
|
`:b$$b`.
|
||||||
|
'P$$$d`
|
||||||
|
.$$$$$`
|
||||||
|
;$$$$$P
|
||||||
|
.:P$$$$$$`
|
||||||
|
.,:b$$$$$$$;'
|
||||||
|
.,:dP$$$$$$$$b:'
|
||||||
|
.,:;db$$$$$$$$$$Pd'`
|
||||||
|
,db$$$$$$$$$$$$$$b:'`
|
||||||
|
:$$$$$$$$$$$$b:'`
|
||||||
|
`$$$$$bd:''`
|
||||||
|
`'''`
|
13
ascii/distro/dracos
Normal file
13
ascii/distro/dracos
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
${c1} `-:/-
|
||||||
|
-os:
|
||||||
|
-os/`
|
||||||
|
:sy+-`
|
||||||
|
`/yyyy+.
|
||||||
|
`+yyyyo-
|
||||||
|
`/yyyys:
|
||||||
|
`:osssoooo++- +yyyyyy/`
|
||||||
|
./yyyyyyo yo`:syyyy+.
|
||||||
|
-oyyy+ +- :yyyyyo-
|
||||||
|
`:sy: `. `/yyyyys:
|
||||||
|
./o/.` .oyyso+oo:`
|
||||||
|
:+oo+//::::///:-.` `.`
|
18
ascii/distro/dragonflybsd
Normal file
18
ascii/distro/dragonflybsd
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} |
|
||||||
|
.-.
|
||||||
|
${c3} ()${c1}I${c3}()
|
||||||
|
${c1} "==.__:-:__.=="
|
||||||
|
"==.__/~|~\__.=="
|
||||||
|
"==._( Y )_.=="
|
||||||
|
${c2}.-'~~""~=--...,__${c1}\/|\/${c2}__,...--=~""~~'-.
|
||||||
|
( ..=${c1}\\=${c1}/${c2}=.. )
|
||||||
|
`'-. ,.-"`;${c1}/=\\${c2};"-.,_ .-'`
|
||||||
|
`~"-=-~` .-~` ${c1}|=|${c2} `~-. `~-=-"~`
|
||||||
|
.-~` /${c1}|=|${c2}\ `~-.
|
||||||
|
.~` / ${c1}|=|${c2} \ `~.
|
||||||
|
.-~` .' ${c1}|=|${c2} `. `~-.
|
||||||
|
(` _,.-="` ${c1} |=|${c2} `"=-.,_ `)
|
||||||
|
`~"~"` ${c1} |=|${c2} `"~"~`
|
||||||
|
${c1} /=\\
|
||||||
|
\\=/
|
||||||
|
^
|
17
ascii/distro/elementary
Normal file
17
ascii/distro/elementary
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c2} eeeeeeeeeeeeeeeee
|
||||||
|
eeeeeeeeeeeeeeeeeeeeeee
|
||||||
|
eeeee eeeeeeeeeeee eeeee
|
||||||
|
eeee eeeee eee eeee
|
||||||
|
eeee eeee eee eeee
|
||||||
|
eee eee eee eee
|
||||||
|
eee eee eee eee
|
||||||
|
ee eee eeee eeee
|
||||||
|
ee eee eeeee eeeeee
|
||||||
|
ee eee eeeee eeeee ee
|
||||||
|
eee eeee eeeeee eeeee eee
|
||||||
|
eee eeeeeeeeee eeeeee eee
|
||||||
|
eeeeeeeeeeeeeeeeeeeeeeee eeeee
|
||||||
|
eeeeeeee eeeeeeeeeeee eeee
|
||||||
|
eeeee eeeee
|
||||||
|
eeeeeee eeeeeee
|
||||||
|
eeeeeeeeeeeeeeeee
|
22
ascii/distro/exherbo
Normal file
22
ascii/distro/exherbo
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
${c2} ,
|
||||||
|
OXo.
|
||||||
|
NXdX0: .cok0KXNNXXK0ko:.
|
||||||
|
KX '0XdKMMK;.xMMMk, .0MMMMMXx; ...
|
||||||
|
'NO..xWkMMx kMMM cMMMMMX,NMWOxOXd.
|
||||||
|
cNMk NK .oXM. OMMMMO. 0MMNo kW.
|
||||||
|
lMc o: ., .oKNk; ;NMMWlxW'
|
||||||
|
;Mc .. .,,' .0M${c1}g;${c2}WMN'dWMMMMMMO
|
||||||
|
XX ,WMMMMW. cM${c1}cfli${c2}WMKlo. .kMk
|
||||||
|
.Mo .WM${c1}GD${c2}MW. XM${c1}WO0${c2}MMk oMl
|
||||||
|
,M: ,XMMWx::,''oOK0x; NM.
|
||||||
|
'Ml ,kNKOxxxxxkkO0XXKOd:. oMk
|
||||||
|
NK .0Nxc${c3}:::::::::::::::${c2}fkKNk, .MW
|
||||||
|
,Mo .NXc${c3}::${c2}qXWXb${c3}::::::::::${c2}oo${c3}::${c2}lNK. .MW
|
||||||
|
;Wo oMd${c3}:::${c2}oNMNP${c3}::::::::${c2}oWMMMx${c3}:${c2}c0M; lMO
|
||||||
|
'NO;W0c${c3}:::::::::::::::${c2}dMMMMO${c3}::${c2}lMk .WM'
|
||||||
|
xWONXdc${c3}::::::::::::::${c2}oOOo${c3}::${c2}lXN. ,WMd
|
||||||
|
'KWWNXXK0Okxxo,${c3}:::::::${c2},lkKNo xMMO
|
||||||
|
:XMNxl,';:lodxkOO000Oxc. .oWMMo
|
||||||
|
'dXMMXkl;,. .,o0MMNo'
|
||||||
|
':d0XWMMMMWNNNNMMMNOl'
|
||||||
|
':okKXWNKkl'
|
17
ascii/distro/fedora
Normal file
17
ascii/distro/fedora
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c1} /:-------------:\\
|
||||||
|
:-------------------::
|
||||||
|
:-----------${c2}/shhOHbmp${c1}---:\\
|
||||||
|
/-----------${c2}omMMMNNNMMD ${c1}---:
|
||||||
|
:-----------${c2}sMMMMNMNMP${c1}. ---:
|
||||||
|
:-----------${c2}:MMMdP${c1}------- ---\\
|
||||||
|
,------------${c2}:MMMd${c1}-------- ---:
|
||||||
|
:------------${c2}:MMMd${c1}------- .---:
|
||||||
|
:---- ${c2}oNMMMMMMMMMNho${c1} .----:
|
||||||
|
:-- .${c2}+shhhMMMmhhy++${c1} .------/
|
||||||
|
:- -------${c2}:MMMd${c1}--------------:
|
||||||
|
:- --------${c2}/MMMd${c1}-------------;
|
||||||
|
:- ------${c2}/hMMMy${c1}------------:
|
||||||
|
:--${c2} :dMNdhhdNMMNo${c1}------------;
|
||||||
|
:---${c2}:sdNMMMMNds:${c1}------------:
|
||||||
|
:------${c2}:://:${c1}-------------::
|
||||||
|
:---------------------://
|
15
ascii/distro/freebsd
Normal file
15
ascii/distro/freebsd
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
${c2}``` ${c1}`
|
||||||
|
${c2}` `.....---...${c1}....--.``` -/
|
||||||
|
${c2}+o .--` ${c1}/y:` +.
|
||||||
|
${c2} yo`:. ${c1}:o `+-
|
||||||
|
${c2}y/ ${c1}-/` -o/
|
||||||
|
${c2}.- ${c1}::/sy+:.
|
||||||
|
${c2}/ ${c1}`-- /
|
||||||
|
${c2}`: ${c1}:`
|
||||||
|
${c2}`: ${c1}:`
|
||||||
|
${c2}/ ${c1}/
|
||||||
|
${c2}.- ${c1}-.
|
||||||
|
${c2}-- ${c1}-.
|
||||||
|
${c2}`:` ${c1}`:`
|
||||||
|
.-- `--.
|
||||||
|
.---.....----.
|
23
ascii/distro/frugalware
Normal file
23
ascii/distro/frugalware
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
${c1} `++/::-.`
|
||||||
|
/o+++++++++/::-.`
|
||||||
|
`o+++++++++++++++o++/::-.`
|
||||||
|
/+++++++++++++++++++++++oo++/:-.``
|
||||||
|
.o+ooooooooooooooooooosssssssso++oo++/:-`
|
||||||
|
++osoooooooooooosssssssssssssyyo+++++++o:
|
||||||
|
-o+ssoooooooooooosssssssssssssyyo+++++++s`
|
||||||
|
o++ssoooooo++++++++++++++sssyyyyo++++++o:
|
||||||
|
:o++ssoooooo${c2}/-------------${c1}+syyyyyo+++++oo
|
||||||
|
`o+++ssoooooo${c2}/-----${c1}+++++ooosyyyyyyo++++os:
|
||||||
|
/o+++ssoooooo${c2}/-----${c1}ooooooosyyyyyyyo+oooss
|
||||||
|
.o++++ssooooos${c2}/------------${c1}syyyyyyhsosssy-
|
||||||
|
++++++ssooooss${c2}/-----${c1}+++++ooyyhhhhhdssssso
|
||||||
|
-s+++++syssssss${c2}/-----${c1}yyhhhhhhhhhhhddssssy.
|
||||||
|
sooooooyhyyyyyh${c2}/-----${c1}hhhhhhhhhhhddddyssy+
|
||||||
|
:yooooooyhyyyhhhyyyyyyhhhhhhhhhhdddddyssy`
|
||||||
|
yoooooooyhyyhhhhhhhhhhhhhhhhhhhddddddysy/
|
||||||
|
-ysooooooydhhhhhhhhhhhddddddddddddddddssy
|
||||||
|
.-:/+osssyyyysyyyyyyyyyyyyyyyyyyyyyyssy:
|
||||||
|
``.-/+oosysssssssssssssssssssssss
|
||||||
|
``.:/+osyysssssssssssssh.
|
||||||
|
`-:/+osyyssssyo
|
||||||
|
.-:+++`
|
11
ascii/distro/funtoo
Normal file
11
ascii/distro/funtoo
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
${c2} _______ ____
|
||||||
|
/MMMMMMM/ /MMMM| _____ _____
|
||||||
|
__/M${c1}.MMM.${c2}M/_____________|M${c1}.M${c2}MM|/MMMMM\/MMMMM\\
|
||||||
|
|MMMM${c1}MM'${c2}MMMMMMMMMMMMMMMMMMM${c1}MM${c2}MMMM${c1}.MMMM..MMMM.${c2}MM\\
|
||||||
|
|MM${c1}MMMMMMM${c2}/m${c1}MMMMMMMMMMMMMMMMMMMMMM${c2}MMMM${c1}MM${c2}MMMM${c1}MM${c2}MM|
|
||||||
|
|MMMM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MMMMM${c1}\MMM${c2}MMM${c1}MM${c2}MMMM${c1}MM${c2}MMMM${c1}MM${c2}MM|
|
||||||
|
|MM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMM${c2}MMMM${c1}'MMMM''MMMM'${c2}MM/
|
||||||
|
|MM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMM${c2}MMM\MMMMM/\MMMMM/
|
||||||
|
|MM${c1}MM${c2}MMM${c1}MM${c2}MMMMMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMMMM'${c2}M|
|
||||||
|
|MM${c1}MM${c2}MMM${c1}MMMMMMMMMMMMMMMMM MM'${c2}M/
|
||||||
|
|MMMMMMMMMMMMMMMMMMMMMMMMMMMM/
|
19
ascii/distro/galliumos
Normal file
19
ascii/distro/galliumos
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1}sooooooooooooooooooooooooooooooooooooo+:
|
||||||
|
yyooooooooooooooooooooooooooooooooo+/:::
|
||||||
|
yyysoooooooooooooooooooooooooooo+/::::::
|
||||||
|
yyyyyoooooooooooooooooooooooo+/:::::::::
|
||||||
|
yyyyyysoooooooooooooooooo++/::::::::::::
|
||||||
|
yyyyyyysoooooooooooooo++/:::::::::::::::
|
||||||
|
yyyyyyyyysoooooo${c2}sydddys${c1}+/:::::::::::::::
|
||||||
|
yyyyyyyyyysooo${c2}smMMMMMMMNd${c1}+::::::::::::::
|
||||||
|
yyyyyyyyyyyyo${c2}sMMMMMMMMMMMN${c1}/:::::::::::::
|
||||||
|
yyyyyyyyyyyyy${c2}dMMMMMMMMMMMM${c1}o//:::::::::::
|
||||||
|
yyyyyyyyyyyyy${c2}hMMMMMMMMMMMm${c1}--//::::::::::
|
||||||
|
yyyyyyyyyyyyyy${c2}hmMMMMMMMNy${c1}:..-://::::::::
|
||||||
|
yyyyyyyyyyyyyyy${c2}yyhhyys+:${c1}......://:::::::
|
||||||
|
yyyyyyyyyyyyyyys+:--...........-///:::::
|
||||||
|
yyyyyyyyyyyys+:--................://::::
|
||||||
|
yyyyyyyyyo+:-.....................-//:::
|
||||||
|
yyyyyyo+:-..........................://:
|
||||||
|
yyyo+:-..............................-//
|
||||||
|
o/:-...................................:
|
18
ascii/distro/gentoo
Normal file
18
ascii/distro/gentoo
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} -/oyddmdhs+:.
|
||||||
|
-o${c2}dNMMMMMMMMNNmhy+${c1}-`
|
||||||
|
-y${c2}NMMMMMMMMMMMNNNmmdhy${c1}+-
|
||||||
|
`o${c2}mMMMMMMMMMMMMNmdmmmmddhhy${c1}/`
|
||||||
|
om${c2}MMMMMMMMMMMN${c1}hhyyyo${c2}hmdddhhhd${c1}o`
|
||||||
|
.y${c2}dMMMMMMMMMMd${c1}hs++so/s${c2}mdddhhhhdm${c1}+`
|
||||||
|
oy${c2}hdmNMMMMMMMN${c1}dyooy${c2}dmddddhhhhyhN${c1}d.
|
||||||
|
:o${c2}yhhdNNMMMMMMMNNNmmdddhhhhhyym${c1}Mh
|
||||||
|
.:${c2}+sydNMMMMMNNNmmmdddhhhhhhmM${c1}my
|
||||||
|
/m${c2}MMMMMMNNNmmmdddhhhhhmMNh${c1}s:
|
||||||
|
`o${c2}NMMMMMMMNNNmmmddddhhdmMNhs${c1}+`
|
||||||
|
`s${c2}NMMMMMMMMNNNmmmdddddmNMmhs${c1}/.
|
||||||
|
/N${c2}MMMMMMMMNNNNmmmdddmNMNdso${c1}:`
|
||||||
|
+M${c2}MMMMMMNNNNNmmmmdmNMNdso${c1}/-
|
||||||
|
yM${c2}MNNNNNNNmmmmmNNMmhs+/${c1}-`
|
||||||
|
/h${c2}MMNNNNNNNNMNdhs++/${c1}-`
|
||||||
|
`/${c2}ohdmmddhys+++/:${c1}.`
|
||||||
|
`-//////:--.
|
7
ascii/distro/gentoo_small
Normal file
7
ascii/distro/gentoo_small
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
${c1} _-----_
|
||||||
|
( \\
|
||||||
|
\ 0 \\
|
||||||
|
${c2} \ )
|
||||||
|
/ _/
|
||||||
|
( _-
|
||||||
|
\____-
|
12
ascii/distro/gnewsense
Normal file
12
ascii/distro/gnewsense
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
${c1} ..,,,,..
|
||||||
|
.oocchhhhhhhhhhccoo.
|
||||||
|
.ochhlllllllc hhhhhh ollllllhhco.
|
||||||
|
ochlllllllllll hhhllllllhhh lllllllllllhco
|
||||||
|
.cllllllllllllll hlllllo +hllh llllllllllllllc.
|
||||||
|
ollllllllllhco'' hlllllo +hllh ``ochllllllllllo
|
||||||
|
hllllllllc' hllllllllllllh `cllllllllh
|
||||||
|
ollllllh +llllllllllll+ hllllllo
|
||||||
|
`cllllh. ohllllllho .hllllc'
|
||||||
|
ochllc. ++++ .cllhco
|
||||||
|
`+occooo+. .+ooocco+'
|
||||||
|
`+oo++++ ++++oo+'
|
18
ascii/distro/gnu
Normal file
18
ascii/distro/gnu
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} _-`````-, ,- '- .
|
||||||
|
.' .- - | | - -. `.
|
||||||
|
/.' / `. \
|
||||||
|
:/ : _... ..._ `` :
|
||||||
|
:: : /._ .`:'_.._\. || :
|
||||||
|
:: `._ ./ ,` : \ . _.'' .
|
||||||
|
`:. / | -. \-. \\_ /
|
||||||
|
\:._ _/ .' .@) \@) ` `\ ,.'
|
||||||
|
_/,--' .- .\,-.`--`.
|
||||||
|
,'/'' (( \ ` )
|
||||||
|
/'/' \ `-' (
|
||||||
|
'/'' `._,-----'
|
||||||
|
''/' .,---'
|
||||||
|
''/' ;:
|
||||||
|
''/'' ''/
|
||||||
|
''/''/''
|
||||||
|
'/'/'
|
||||||
|
`;
|
10
ascii/distro/guixsd
Normal file
10
ascii/distro/guixsd
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
${c1} .. `.
|
||||||
|
`--..```..` `..```..--`
|
||||||
|
.-:///-:::. `-:::///:-.
|
||||||
|
````.:::` `:::.````
|
||||||
|
-//:` -::-
|
||||||
|
://: -::-
|
||||||
|
`///- .:::`
|
||||||
|
-+++-:::.
|
||||||
|
:+/:::-
|
||||||
|
`-....`
|
17
ascii/distro/haiku
Normal file
17
ascii/distro/haiku
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c2} :dc'
|
||||||
|
'l:;'${c1},${c2}'ck. .;dc:.
|
||||||
|
co ${c1}..${c2}k. .;; ':o.
|
||||||
|
co ${c1}..${c2}k. ol ${c1}.${c2}0.
|
||||||
|
co ${c1}..${c2}k. oc ${c1}..${c2}0.
|
||||||
|
co ${c1}..${c2}k. oc ${c1}..${c2}0.
|
||||||
|
.Ol,. co ${c1}...''${c2}Oc;kkodxOdddOoc,.
|
||||||
|
';lxxlxOdxkxk0kd${c1}oooll${c2}dl${c1}ccc:${c2}clxd;
|
||||||
|
..${c1}oOolllllccccccc:::::${c2}od;
|
||||||
|
cx:ooc${c1}:::::::;${c2}cooolcX.
|
||||||
|
cd${c1}.${c2}''cloxdoollc' ${c1}...${c2}0.
|
||||||
|
cd${c1}......${c2}k;${c1}.${c2}xl${c1}.... .${c2}0.
|
||||||
|
.::c${c1};..${c2}cx;${c1}.${c2}xo${c1}..... .${c2}0.
|
||||||
|
'::c'${c1}...${c2}do${c1}..... .${c2}K,
|
||||||
|
cd,.${c1}....:${c2}O,${c1}
|
||||||
|
':clod:'${c1}
|
||||||
|
${c1}
|
21
ascii/distro/kali
Normal file
21
ascii/distro/kali
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
${c1}..............
|
||||||
|
..,;:ccc,.
|
||||||
|
......''';lxO.
|
||||||
|
.....''''..........,:ld;
|
||||||
|
.';;;:::;,,.x,
|
||||||
|
..'''. 0Xxoc:,. ...
|
||||||
|
.... ,ONkc;,;cokOdc',.
|
||||||
|
. OMo ':${c2}dd${c1}o.
|
||||||
|
dMc :OO;
|
||||||
|
0M. .:o.
|
||||||
|
;Wd
|
||||||
|
;XO,
|
||||||
|
,d0Odlc;,..
|
||||||
|
..',;:cdOOd::,.
|
||||||
|
.:d;.':;.
|
||||||
|
'd, .'
|
||||||
|
;l ..
|
||||||
|
.o
|
||||||
|
c
|
||||||
|
.'
|
||||||
|
.
|
16
ascii/distro/kaos
Normal file
16
ascii/distro/kaos
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c1} ..
|
||||||
|
..... ..OSSAAAAAAA..
|
||||||
|
.KKKKSS. .SSAAAAAAAAAAA.
|
||||||
|
.KKKKKSO. .SAAAAAAAAAA...
|
||||||
|
KKKKKKS. .OAAAAAAAA.
|
||||||
|
KKKKKKS. .OAAAAAA.
|
||||||
|
KKKKKKS. .SSAA..
|
||||||
|
.KKKKKS..OAAAAAAAAAAAA........
|
||||||
|
DKKKKO.=AA=========A===AASSSO..
|
||||||
|
AKKKS.==========AASSSSAAAAAASS.
|
||||||
|
.=KKO..========ASS.....SSSSASSSS.
|
||||||
|
.KK. .ASS..O.. =SSSSAOSS:
|
||||||
|
.OK. .ASSSSSSSO...=A.SSA.
|
||||||
|
.K ..SSSASSSS.. ..SSA.
|
||||||
|
.SSS.AAKAKSSKA.
|
||||||
|
.SSS....S..
|
19
ascii/distro/kde
Normal file
19
ascii/distro/kde
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} `..---+/---..`
|
||||||
|
`---.`` `` `.---.`
|
||||||
|
.--.` `` `-:-.
|
||||||
|
`:/: `.----//----.` :/-
|
||||||
|
.:. `---` `--.` .:`
|
||||||
|
.:` `--` .:- `:.
|
||||||
|
`/ `:. `.-::-.` -:` `/`
|
||||||
|
/. /. `:++++++++:` .: .:
|
||||||
|
`/ .: `+++++++++++/ /` `+`
|
||||||
|
/+` -- .++++++++++++` :. .+:
|
||||||
|
`/ .: `+++++++++++/ /` `+`
|
||||||
|
/` /. `:++++++++:` .: .:
|
||||||
|
./ `:. `.:::-.` -:` `/`
|
||||||
|
.:` `--` .:- `:.
|
||||||
|
.:. `---` `--.` .:`
|
||||||
|
`:/: `.----//----.` :/-
|
||||||
|
.-:.` `` `-:-.
|
||||||
|
`---.`` `` `.---.`
|
||||||
|
`..---+/---..`
|
20
ascii/distro/kogaion
Normal file
20
ascii/distro/kogaion
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} ;; ,;
|
||||||
|
;;; ,;;
|
||||||
|
,;;;; ;;;;
|
||||||
|
,;;;;;;;; ;;;;
|
||||||
|
;;;;;;;;;;; ;;;;;
|
||||||
|
,;;;;;;;;;;;; ';;;;;,
|
||||||
|
;;;;;;;;;;;;;;, ';;;;;;;
|
||||||
|
;;;;;;;;;;;;;;;;;, ';;;;;
|
||||||
|
; ';;;;;;;;;;;;;;;;;;, ;;;
|
||||||
|
;;;, ';;;;;;;;;;;;;;;;;;;,;;
|
||||||
|
;;;;;, ';;;;;;;;;;;;;;;;;;,
|
||||||
|
;;;;;;;;, ';;;;;;;;;;;;;;;;,
|
||||||
|
;;;;;;;;;;;;, ';;;;;;;;;;;;;;
|
||||||
|
';;;;;;;;;;;;; ';;;;;;;;;;;;;
|
||||||
|
';;;;;;;;;;;;;, ';;;;;;;;;;;
|
||||||
|
';;;;;;;;;;;;; ;;;;;;;;;;
|
||||||
|
';;;;;;;;;;;; ;;;;;;;;
|
||||||
|
';;;;;;;; ;;;;;;
|
||||||
|
';;;;; ;;;;
|
||||||
|
';;; ;;
|
16
ascii/distro/korora
Normal file
16
ascii/distro/korora
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c2} ____________
|
||||||
|
_add55555555554${c1}:
|
||||||
|
_w?'${c1}``````````'${c2})k${c1}:
|
||||||
|
_Z'${c1}`${c2} ]k${c1}:
|
||||||
|
m(${c1}`${c2} )k${c1}:
|
||||||
|
_.ss${c1}`${c2}m[${c1}`${c2}, ]e${c1}:
|
||||||
|
.uY"^`${c1}`${c2}Xc${c1}`${c2}?Ss. d(${c1}`
|
||||||
|
jF'${c1}`${c2} `@. ${c1}`${c2}Sc .jr${c1}`
|
||||||
|
jr${c1}`${c2} `?n_ ${c1}`${c2}$; _a2"${c1}`
|
||||||
|
.m${c1}:${c2} `~M${c1}`${c2}1k${c1}`${c2}5?!`${c1}`
|
||||||
|
:#${c1}:${c2} ${c1}`${c2})e${c1}```
|
||||||
|
:m${c1}:${c2} ,#'${c1}`
|
||||||
|
:#${c1}:${c2} .s2'${c1}`
|
||||||
|
:m,________.aa7^${c1}`
|
||||||
|
:#baaaaaaas!J'${c1}`
|
||||||
|
```````````
|
20
ascii/distro/kubuntu
Normal file
20
ascii/distro/kubuntu
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} `.:/ossyyyysso/:.
|
||||||
|
.:oyyyyyyyyyyyyyyyyyyo:`
|
||||||
|
-oyyyyyyyo-``/yyyyyyysyyyyo-
|
||||||
|
-syyyyyyyyyy` +yyyy/` `/yyyys-
|
||||||
|
+yyys/./syyyy: ..-` /yyyyyy+
|
||||||
|
`oyyyy: `:syys+oooo+:. .yyyyyyyyo`
|
||||||
|
+yyyyyy/ `/yyyyyyyyyyys/` /sssssyyy+
|
||||||
|
-yyyyyyyy- -syyyyyyyyyyyyyys- syyy-
|
||||||
|
oyyyyso+: .yyyyyyyyyyyyyyyyyy. `.+yyyo
|
||||||
|
yyys /yyyyyyyyyyyyyyyyyysosyyyyyyyy
|
||||||
|
yyys.` /yyyyyyyyyyyyyyyyyyyyyyyyyyyyy
|
||||||
|
oyyyyyso: .yyyyyyyyyyyyyyyyyy.`.-:/syyyo
|
||||||
|
-yyyyyyyy. -syyyyyyyyyyyyyys- syyy-
|
||||||
|
+yyyyyy: `syyyyyyyyyyys/` /o+++oyyy+
|
||||||
|
`oyyyy. -syyy++oooo+/. oyyyyyyyyo
|
||||||
|
+yyys/-oyyyys` `..` -yyyyyyy+
|
||||||
|
-syyyyyyyyy: .syyy/` `syyyys-
|
||||||
|
-oyyyyyyy:.`-yyyyyys+syyyyo-
|
||||||
|
./oyyyyyyyyyyyyyyyyyyo/.
|
||||||
|
`.:/oosyyyysso/:.`
|
12
ascii/distro/linux
Normal file
12
ascii/distro/linux
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
${c2} #####
|
||||||
|
${c2} #######
|
||||||
|
${c2} ##${c1}O${c2}#${c1}O${c2}##
|
||||||
|
${c2} #${c3}#####${c2}#
|
||||||
|
${c2} ##${c1}##${c3}###${c1}##${c2}##
|
||||||
|
${c2} #${c1}##########${c2}##
|
||||||
|
${c2} #${c1}############${c2}##
|
||||||
|
${c2} #${c1}############${c2}###
|
||||||
|
${c3} ##${c2}#${c1}###########${c2}##${c3}#
|
||||||
|
${c3}######${c2}#${c1}#######${c2}#${c3}######
|
||||||
|
${c3}#######${c2}#${c1}#####${c2}#${c3}#######
|
||||||
|
${c3} #####${c2}#######${c3}#####
|
17
ascii/distro/lmde
Normal file
17
ascii/distro/lmde
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c2}`.-::---..
|
||||||
|
${c1} .:++++ooooosssoo:.
|
||||||
|
.+o++::. `.:oos+.
|
||||||
|
${c1} :oo:.` -+oo${c2}:
|
||||||
|
${c1} ${c2}`${c1}+o/` .${c2}::::::${c1}-. .++-${c2}`
|
||||||
|
${c1}${c2}`${c1}/s/ .yyyyyyyyyyo: +o-${c2}`
|
||||||
|
${c1}${c2}`${c1}so .ss ohyo` :s-${c2}:
|
||||||
|
${c1}${c2}`${c1}s/ .ss h m myy/ /s`${c2}`
|
||||||
|
${c1}`s: `oo s m Myy+-o:`
|
||||||
|
`oo :+sdoohyoydyso/.
|
||||||
|
:o. .:////////++:
|
||||||
|
${c1} `/++ ${c2}-:::::-
|
||||||
|
${c1} ${c2}`${c1}++-
|
||||||
|
${c1} ${c2}`${c1}/+-
|
||||||
|
${c1} ${c2}.${c1}+/.
|
||||||
|
${c1} ${c2}.${c1}:+-.
|
||||||
|
`--.``
|
20
ascii/distro/lubuntu
Normal file
20
ascii/distro/lubuntu
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} `-/+oyyhhhhyyo+/-`
|
||||||
|
./shhhhhhhhhhhhhhhhhhs/.
|
||||||
|
`:shhhhhhhhhhhhhhhhhhhhhhhhs:`
|
||||||
|
:yhhhhhhhhhhhhhhhs++yhhhhhhhhhy:
|
||||||
|
`ohhhhhhhhhhhhhs+:. .yhhhhhhhhhhhho`
|
||||||
|
`shhhhhhhhhhy+:` /yhhhhhhhhhhhhhs`
|
||||||
|
shhhhhhhhy+. .ohhhhhhhhhhhhhs
|
||||||
|
:hhhhhhy/. /hhhhhhhhhhhhh:
|
||||||
|
shhhy/. :hhhhhhhhhhhhs
|
||||||
|
hy+. ` `+yhs/` +hhhhhhhhhhhh
|
||||||
|
-.:/oshy- ` :yhhhhhy/ shhhhhhhhhhh
|
||||||
|
shhhhhy-`/s. .shhhhhhhhho` .hhhhhhhhhhs
|
||||||
|
:hhhho`:ys` /yhhhhhhhhhhhs` +hhhhhhhhh:
|
||||||
|
shh/.sh+ `ohhhhhhhhhhhhhhs` .hhhhhhhhs
|
||||||
|
`o-+hh: :yhhhhhhhhhhhhhhhho ohhhhhhs`
|
||||||
|
+hy-`ohhhhhhhhhhhhhhhhhhh+ -hhhhho`
|
||||||
|
:.-yhhhhhhhhhhhhhhhhhhhhh: yhhy:
|
||||||
|
:shhhhhhhhhhhhhhhhhhhhhy`+s:`
|
||||||
|
.+shhhhhhhhhhhhhhhhhhs:`
|
||||||
|
`-/+oyyhhhhyys+/-`
|
16
ascii/distro/mac
Normal file
16
ascii/distro/mac
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c1} -/+:.
|
||||||
|
:++++.
|
||||||
|
/+++/.
|
||||||
|
.:-::- .+/:-``.::-
|
||||||
|
.:/++++++/::::/++++++/:`
|
||||||
|
${c2} .:///////////////////////:`
|
||||||
|
////////////////////////`
|
||||||
|
${c3}-+++++++++++++++++++++++`
|
||||||
|
/++++++++++++++++++++++/
|
||||||
|
${c4}/sssssssssssssssssssssss.
|
||||||
|
:ssssssssssssssssssssssss-
|
||||||
|
${c5} osssssssssssssssssssssssso/`
|
||||||
|
`syyyyyyyyyyyyyyyyyyyyyyyy+`
|
||||||
|
${c6} `ossssssssssssssssssssss/
|
||||||
|
:ooooooooooooooooooo+.
|
||||||
|
`:+oo+/:-..-:/+o+/-
|
19
ascii/distro/mageia
Normal file
19
ascii/distro/mageia
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} .°°.
|
||||||
|
°° .°°.
|
||||||
|
.°°°. °°
|
||||||
|
. .
|
||||||
|
°°° .°°°.
|
||||||
|
.°°°. '___'
|
||||||
|
${c2} .${c1}'___' ${c2} .
|
||||||
|
:dkxc;'. ..,cxkd;
|
||||||
|
.dkk. kkkkkkkkkk .kkd.
|
||||||
|
.dkk. ';cloolc;. .kkd
|
||||||
|
ckk. .kk;
|
||||||
|
xO: cOd
|
||||||
|
xO: lOd
|
||||||
|
lOO. .OO:
|
||||||
|
.k00. .00x
|
||||||
|
.k00; ;00O.
|
||||||
|
.lO0Kc;,,,,,,;c0KOc.
|
||||||
|
;d00KKKKKK00d;
|
||||||
|
.,KKKK,.
|
14
ascii/distro/manjaro
Normal file
14
ascii/distro/manjaro
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
${c1}██████████████████ ████████
|
||||||
|
██████████████████ ████████
|
||||||
|
██████████████████ ████████
|
||||||
|
██████████████████ ████████
|
||||||
|
████████ ████████
|
||||||
|
████████ ████████ ████████
|
||||||
|
████████ ████████ ████████
|
||||||
|
████████ ████████ ████████
|
||||||
|
████████ ████████ ████████
|
||||||
|
████████ ████████ ████████
|
||||||
|
████████ ████████ ████████
|
||||||
|
████████ ████████ ████████
|
||||||
|
████████ ████████ ████████
|
||||||
|
████████ ████████ ████████
|
16
ascii/distro/mint
Normal file
16
ascii/distro/mint
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c1}MMMMMMMMMMMMMMMMMMMMMMMMMmds+.
|
||||||
|
MMm----::-://////////////oymNMd+`
|
||||||
|
MMd ${c2}/++ ${c1}-sNMd:
|
||||||
|
MMNso/` ${c2}dMM `.::-. .-::.` ${c1}.hMN:
|
||||||
|
ddddMMh ${c2}dMM :hNMNMNhNMNMNh: ${c1}`NMm
|
||||||
|
NMm ${c2}dMM .NMN/-+MMM+-/NMN` ${c1}dMM
|
||||||
|
NMm ${c2}dMM -MMm `MMM dMM. ${c1}dMM
|
||||||
|
NMm ${c2}dMM -MMm `MMM dMM. ${c1}dMM
|
||||||
|
NMm ${c2}dMM .mmd `mmm yMM. ${c1}dMM
|
||||||
|
NMm ${c2}dMM` ..` ... ydm. ${c1}dMM
|
||||||
|
hMM- ${c2}+MMd/-------...-:sdds ${c1}dMM
|
||||||
|
-NMm- ${c2}:hNMNNNmdddddddddy/` ${c1}dMM
|
||||||
|
-dMNs-${c2}``-::::-------.`` ${c1}dMM
|
||||||
|
`/dMNmy+/:-------------:/yMMM
|
||||||
|
./ydNMMMMMMMMMMMMMMMMMMMMM
|
||||||
|
.MMMMMMMMMMMMMMMMMMM
|
17
ascii/distro/netbsd
Normal file
17
ascii/distro/netbsd
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c1} `-/oshdmNMNdhyo+:-`
|
||||||
|
${c2}y${c1}/s+:-`` `.-:+oydNMMMMNhs/-``
|
||||||
|
${c2}-m+${c1}NMMMMMMMMMMMMMMMMMMMNdhmNMMMmdhs+/-`
|
||||||
|
${c2}-m+${c1}NMMMMMMMMMMMMMMMMMMMMmy+:`
|
||||||
|
${c2}-N/${c1}dMMMMMMMMMMMMMMMds:`
|
||||||
|
${c2}-N/${c1}hMMMMMMMMMmho:`
|
||||||
|
${c2}-N/${c1}-:/++/:.`
|
||||||
|
${c2} :M+
|
||||||
|
:Mo
|
||||||
|
:Ms
|
||||||
|
:Ms
|
||||||
|
:Ms
|
||||||
|
:Ms
|
||||||
|
:Ms
|
||||||
|
:Ms
|
||||||
|
:Ms
|
||||||
|
:Ms
|
20
ascii/distro/netrunner
Normal file
20
ascii/distro/netrunner
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} .:oydmMMMMMMmdyo:`
|
||||||
|
-smMMMMMMMMMMMMMMMMMMds-
|
||||||
|
+mMMMMMMMMMMMMMMMMMMMMMMMMd+
|
||||||
|
/mMMMMMMMMMMMMMMMMMMMMMMMMMMMMm/
|
||||||
|
`hMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMy`
|
||||||
|
.mMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMd`
|
||||||
|
dMMMMMMMMMMMMMMMMMMMMMMNdhmMMMMMMMMMMh
|
||||||
|
+MMMMMMMMMMMMMNmhyo+/-. -MMMMMMMMMMMM/
|
||||||
|
mMMMMMMMMd+:.` `mMMMMMMMMMMMMd
|
||||||
|
MMMMMMMMMMMdy/. yMMMMMMMMMMMMMM
|
||||||
|
MMMMMMMMMMMMMMMNh+` +MMMMMMMMMMMMMMM
|
||||||
|
mMMMMMMMMMMMMMMMMMs -NMMMMMMMMMMMMMMd
|
||||||
|
+MMMMMMMMMMMMMMMMMN. `mMMMMMMMMMMMMMMM/
|
||||||
|
dMMMMMMMMMMMMMMMMMy hMMMMMMMMMMMMMMMh
|
||||||
|
`dMMMMMMMMMMMMMMMMM-+MMMMMMMMMMMMMMMd`
|
||||||
|
`hMMMMMMMMMMMMMMMMmMMMMMMMMMMMMMMMy
|
||||||
|
/mMMMMMMMMMMMMMMMMMMMMMMMMMMMMm:
|
||||||
|
+dMMMMMMMMMMMMMMMMMMMMMMMMd/
|
||||||
|
-odMMMMMMMMMMMMMMMMMMdo-
|
||||||
|
`:+ydmNMMMMNmhy+-`
|
19
ascii/distro/nixos
Normal file
19
ascii/distro/nixos
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} ::::. ${c2}'::::: ::::'
|
||||||
|
${c1} '::::: ${c2}':::::. ::::'
|
||||||
|
${c1} ::::: ${c2}'::::.:::::
|
||||||
|
${c1} .......:::::..... ${c2}::::::::
|
||||||
|
${c1} ::::::::::::::::::. ${c2}:::::: ${c1}::::.
|
||||||
|
::::::::::::::::::::: ${c2}:::::. ${c1}.::::'
|
||||||
|
${c2} ..... ::::' ${c1}:::::'
|
||||||
|
${c2} ::::: '::' ${c1}:::::'
|
||||||
|
${c2} ........::::: ' ${c1}:::::::::::.
|
||||||
|
${c2}::::::::::::: ${c1}:::::::::::::
|
||||||
|
${c2} ::::::::::: ${c1}.. ${c1}:::::
|
||||||
|
${c2} .::::: ${c1}.::: ${c1}:::::
|
||||||
|
${c2} .::::: ${c1}::::: ${c1}''''' ${c2}.....
|
||||||
|
::::: ${c1}':::::. ${c2}......:::::::::::::'
|
||||||
|
::: ${c1}::::::. ${c2}':::::::::::::::::'
|
||||||
|
${c1} .:::::::: ${c2}'::::::::::
|
||||||
|
${c1} .::::''::::. ${c2}'::::.
|
||||||
|
${c1} .::::' ::::. ${c2}'::::.
|
||||||
|
${c1} .:::: :::: ${c2}'::::.
|
23
ascii/distro/openbsd
Normal file
23
ascii/distro/openbsd
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
${c3} _
|
||||||
|
(_)
|
||||||
|
${c1} | .
|
||||||
|
${c1} . |L /| . ${c3} _
|
||||||
|
${c1} _ . |\ _| \--+._/| . ${c3}(_)
|
||||||
|
${c1} / ||\| Y J ) / |/| ./
|
||||||
|
J |)'( | ` F`.'/ ${c3} _
|
||||||
|
${c1} -<| F __ .-< ${c3}(_)
|
||||||
|
${c1} | / .-'${c3}. ${c1}`. /${c3}-. ${c1}L___
|
||||||
|
J \\ < ${c3}\ ${c1} | | ${c5}O${c3}\\\\${c1}|.-' ${c3} _
|
||||||
|
${c1} _J \\ .- \\\\${c3}/ ${c5}O ${c3}| ${c1}| \\ |${c1}F ${c3}(_)
|
||||||
|
${c1} '-F -<_. \\ .-' `-' L__
|
||||||
|
__J _ _. >-' ${c1})${c4}._. ${c1}|-'
|
||||||
|
${c1} `-|.' /_. ${c4}\_| ${c1} F
|
||||||
|
/.- . _.<
|
||||||
|
/' /.' .' `\\
|
||||||
|
/L /' |/ _.-'-\\
|
||||||
|
/'J ___.---'\|
|
||||||
|
|\ .--' V | `. `
|
||||||
|
|/`. `-. `._)
|
||||||
|
/ .-.\\
|
||||||
|
\\ ( `\\
|
||||||
|
`.\
|
7
ascii/distro/openbsd_small
Normal file
7
ascii/distro/openbsd_small
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
${c1} _____
|
||||||
|
\\- -/
|
||||||
|
\\_/ \\
|
||||||
|
| ${c2}O O${c1} |
|
||||||
|
|_ < ) 3 )
|
||||||
|
/ \\ /
|
||||||
|
/-_____-\\
|
16
ascii/distro/openindiana
Normal file
16
ascii/distro/openindiana
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c2} .sy/
|
||||||
|
.yh+
|
||||||
|
|
||||||
|
${c1}-+syyyo+- ${c2} /+.
|
||||||
|
${c1}+ddo/---/sdh/ ${c2} ym-
|
||||||
|
${c1}`hm+ `sms${c2} ym-```````.-.
|
||||||
|
${c1}sm+ sm/ ${c2} ym- +s
|
||||||
|
${c1}hm. /mo ${c2} ym- /h
|
||||||
|
${c1}omo ym: ${c2} ym- `os`
|
||||||
|
${c1}smo` .ym+ ${c2} ym- .os-
|
||||||
|
`` ${c1}:ymy+///oyms- ${c2} ym- .+s+.
|
||||||
|
..` ${c1}`:+oo+/-` ${c2} -//oyo-
|
||||||
|
-:` .:oys/.
|
||||||
|
+- `./oyys/.
|
||||||
|
h+` `.-:+oyyyo/-`
|
||||||
|
`/ossssysso+/-.`
|
15
ascii/distro/openmandriva
Normal file
15
ascii/distro/openmandriva
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
${c2} ``
|
||||||
|
`-.
|
||||||
|
${c1} ` ${c2}.---
|
||||||
|
${c1} -/ ${c2}-::--`
|
||||||
|
${c1} `++ ${c2}`----...```-:::::.
|
||||||
|
${c1} `os. ${c2}.::::::::::::::-``` ` `
|
||||||
|
${c1} +s+ ${c2}.::::::::::::::::---...--`
|
||||||
|
${c1}-ss: ${c2}`-::::::::::::::::-.``.``
|
||||||
|
${c1}/ss- ${c2}.::::::::::::-.`` `
|
||||||
|
${c1}+ss: ${c2}.::::::::::::-
|
||||||
|
${c1}/sso ${c2}.::::::-::::::-
|
||||||
|
${c1}.sss/ ${c2}-:::-.` .:::::
|
||||||
|
${c1} /sss+. ${c2}..`${c1} `--` ${c2}.:::
|
||||||
|
${c1} -ossso+/:://+/-` ${c2}.:`
|
||||||
|
${c1} -/+ooo+/-. ${c2}`
|
9
ascii/distro/openwrt
Normal file
9
ascii/distro/openwrt
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
${c1} _______
|
||||||
|
| |.-----.-----.-----.
|
||||||
|
| - || _ | -__| |
|
||||||
|
|_______|| __|_____|__|__|
|
||||||
|
|__|
|
||||||
|
________ __
|
||||||
|
| | | |.----.| |_
|
||||||
|
| | | || _|| _|
|
||||||
|
|________||__| |____|
|
12
ascii/distro/oracle
Normal file
12
ascii/distro/oracle
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
${c1}
|
||||||
|
`-/+++++++++++++++++/-.`
|
||||||
|
`/syyyyyyyyyyyyyyyyyyyyyyys/.
|
||||||
|
:yyyyo/-...............-/oyyyy/
|
||||||
|
/yyys- .oyyy+
|
||||||
|
.yyyy` `syyy-
|
||||||
|
:yyyo /yyy/
|
||||||
|
.yyyy` `syyy-
|
||||||
|
/yyys. .oyyyo
|
||||||
|
/yyyyo:-...............-:oyyyy/`
|
||||||
|
`/syyyyyyyyyyyyyyyyyyyyyyys+.
|
||||||
|
`.:/+ooooooooooooooo+/:.`
|
24
ascii/distro/pacbsd
Normal file
24
ascii/distro/pacbsd
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
${c1} :+sMs.
|
||||||
|
`:ddNMd- -o--`
|
||||||
|
-sMMMMh: `+N+``
|
||||||
|
yMMMMMs` .....-/-... `mNh/
|
||||||
|
yMMMMMmh+-`:sdmmmmmmMmmmmddy+-``./ddNMMm
|
||||||
|
yNMMNMMMMNdyyNNMMMMMMMMMMMMMMMhyshNmMMMm
|
||||||
|
:yMMMMMMMMMNdooNMMMMMMMMMMMMMMMMNmy:mMMd
|
||||||
|
+MMMMMMMMMmy:sNMMMMMMMMMMMMMMMMMMMmshs-
|
||||||
|
:hNMMMMMMN+-+MMMMMMMMMMMMMMMMMMMMMMMs.
|
||||||
|
.omysmNNhy/+yNMMMMMMMMMMNMMMMMMMMMNdNNy-
|
||||||
|
/hMM:::::/hNMMMMMMMMMMMm/-yNMMMMMMN.mMNh`
|
||||||
|
.hMMMMdhdMMMMMMMMMMMMMMmo `sMMMMMMN mMMm-
|
||||||
|
:dMMMMMMMMMMMMMMMMMMMMMdo+ oMMMMMMN`smMNo`
|
||||||
|
/dMMMMMMMMMMMMMMMMMMMMMNd/` :yMMMMMN:-hMMM.
|
||||||
|
:dMMMMMMMMMMMMMMMMMMMMMNh` oMMMMMMNo/dMNN`
|
||||||
|
:hMMMMMMMMMMMMMMMMMMMMMMNs--sMMMMMMMNNmy++`
|
||||||
|
sNMMMMMMMMMMMMMMMMMMMMMMMmmNMMMMMMNho::o.
|
||||||
|
:yMMMMMMMMMMMMMNho+sydNNNNNNNmysso/` -//
|
||||||
|
/dMMMMMMMMMMMMMs- ````````..``
|
||||||
|
.oMMMMMMMMMMMMNs` ./y:`
|
||||||
|
+dNMMNMMMMMMMmy` ``./ys.
|
||||||
|
`/hMMMMMMMMMMMNo-`` `.+yy+-`
|
||||||
|
`-/hmNMNMMMMMMmmddddhhy/-`
|
||||||
|
`-+oooyMMMdsoo+/:.
|
17
ascii/distro/parabola
Normal file
17
ascii/distro/parabola
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c1} eeeeeeeee
|
||||||
|
eeeeeeeeeeeeeee
|
||||||
|
eeeeee${c2}//////////${c1}eeeee
|
||||||
|
eeeee${c2}///////////////${c1}eeeee
|
||||||
|
eeeee${c2}/// ////${c1}eeee
|
||||||
|
eeee${c2}// ///${c1}eeeee
|
||||||
|
eee ${c2}///${c1}eeeee
|
||||||
|
ee ${c2}//${c1}eeeeee
|
||||||
|
e ${c2}/${c1}eeeeeee
|
||||||
|
eeeeeee
|
||||||
|
eeeeee
|
||||||
|
eeeeee
|
||||||
|
eeeee
|
||||||
|
eeee
|
||||||
|
eee
|
||||||
|
ee
|
||||||
|
e
|
18
ascii/distro/pardus
Normal file
18
ascii/distro/pardus
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} .smNdy+- `.:/osyyso+:.` -+ydmNs.
|
||||||
|
/Md- -/ymMdmNNdhso/::/oshdNNmdMmy/. :dM/
|
||||||
|
mN. oMdyy- -y `-dMo .Nm
|
||||||
|
.mN+` sMy hN+ -: yMs `+Nm.
|
||||||
|
`yMMddMs.dy `+` sMddMMy`
|
||||||
|
+MMMo .` . oMMM+
|
||||||
|
`NM/ `````.` `.````` +MN`
|
||||||
|
yM+ `.-:yhomy ymohy:-.` +My
|
||||||
|
yM: yo oy :My
|
||||||
|
+Ms .N` `N. +h sM+
|
||||||
|
`MN - -::::::- : :o:+`NM`
|
||||||
|
yM/ sh -dMMMMd- ho +y+My
|
||||||
|
.dNhsohMh-//: /mm/ ://-yMyoshNd`
|
||||||
|
`-ommNMm+:/. oo ./:+mMNmmo:`
|
||||||
|
`/o+.-somNh- :yy: -hNmos-.+o/`
|
||||||
|
./` .s/`s+sMdd+``+ddMs+s`/s. `/.
|
||||||
|
: -y. -hNmddmNy. .y- :
|
||||||
|
-+ `..` +-
|
19
ascii/distro/pclinuxos
Normal file
19
ascii/distro/pclinuxos
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1}mhhhyyyyhhhdN
|
||||||
|
dyssyhhhhhhhhhhhssyhN
|
||||||
|
Nysyhhyo/:-.....-/oyhhhssd
|
||||||
|
Nsshhy+. `/shhysm
|
||||||
|
dohhy/ -shhsy
|
||||||
|
dohhs` /hhys
|
||||||
|
N+hho ${c2}+ssssss+- .+syhys+ ${c1}/hhsy
|
||||||
|
ohhh` ${c2}ymmo++hmm+`smmy/::+y` ${c1}shh+
|
||||||
|
+hho ${c2}ymm- /mmy+mms ${c1}:hhod
|
||||||
|
/hh+ ${c2}ymmhhdmmh.smm/ ${c1}.hhsh
|
||||||
|
+hhs ${c2}ymm+::-` /mmy` ` ${c1}/hh+m
|
||||||
|
yyhh- ${c2}ymm- /dmdyosyd` ${c1}`yhh+
|
||||||
|
ohhy` ${c2}://` -/+++/- ${c1}ohhom
|
||||||
|
N+hhy- `shhoh
|
||||||
|
sshho. `+hhyom
|
||||||
|
dsyhhs/. `:ohhhoy
|
||||||
|
dysyhhhso///://+syhhhssh
|
||||||
|
dhyssyhhhhhhyssyyhN
|
||||||
|
mddhdhdmN
|
19
ascii/distro/peppermint
Normal file
19
ascii/distro/peppermint
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} 8ZZZZZZ${c2}MMMMM
|
||||||
|
${c1} .ZZZZZZZZZ${c2}MMMMMMM.
|
||||||
|
${c2} MM${c1}ZZZZZZZZZ${c2}MMMMMMM${c1}ZZZZ
|
||||||
|
${c2} MMMMM${c1}ZZZZZZZZ${c2}MMMMM${c1}ZZZZZZZM
|
||||||
|
${c2} MMMMMMM${c1}ZZZZZZZ${c2}MMMM${c1}ZZZZZZZZZ.
|
||||||
|
${c2} MMMMMMMMM${c1}ZZZZZZ${c2}MMM${c1}ZZZZZZZZZZZI
|
||||||
|
${c2}MMMMMMMMMMM${c1}ZZZZZZ${c2}MM${c1}ZZZZZZZZZZ${c2}MMM
|
||||||
|
${c1}.ZZZ${c2}MMMMMMMMMM${c1}IZZ${c2}MM${c1}ZZZZZ${c2}MMMMMMMMM
|
||||||
|
${c1}ZZZZZZZ${c2}MMMMMMMM${c1}ZZ${c2}M${c1}ZZZZ${c2}MMMMMMMMMMM
|
||||||
|
${c1}ZZZZZZZZZZZZZZZZ${c2}M${c1}Z${c2}MMMMMMMMMMMMMMM
|
||||||
|
${c1}.ZZZZZZZZZZZZZ${c2}MMM${c1}Z${c2}M${c1}ZZZZZZZZZZ${c2}MMMM
|
||||||
|
${c1}.ZZZZZZZZZZZ${c2}MMM${c1}7ZZ${c2}MM${c1}ZZZZZZZZZZ7${c2}M
|
||||||
|
${c1} ZZZZZZZZZ${c2}MMMM${c1}ZZZZ${c2}MMMM${c1}ZZZZZZZ77
|
||||||
|
${c2} MMMMMMMMMMMM${c1}ZZZZZ${c2}MMMM${c1}ZZZZZ77
|
||||||
|
${c2} MMMMMMMMMM${c1}7ZZZZZZ${c2}MMMMM${c1}ZZ77
|
||||||
|
${c2} .MMMMMMM${c1}ZZZZZZZZ${c2}MMMMM${c1}Z7Z
|
||||||
|
${c2} MMMMM${c1}ZZZZZZZZZ${c2}MMMMMMM
|
||||||
|
${c1} NZZZZZZZZZZZ${c2}MMMMM
|
||||||
|
${c1} ZZZZZZZZZ${c2}MM)
|
23
ascii/distro/porteus
Normal file
23
ascii/distro/porteus
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
${c1} `.-:::-.`
|
||||||
|
-+ydmNNNNNNNmdy+-
|
||||||
|
.+dNmdhs+//////+shdmdo.
|
||||||
|
.smmy+-` ./sdy:
|
||||||
|
`omdo. `.-/+osssso+/-` `+dy.
|
||||||
|
`yms. `:shmNmdhsoo++osyyo-``oh.
|
||||||
|
hm/ .odNmds/.` ``.....:::-+s
|
||||||
|
/m: `+dNmy:` `./oyhhhhyyooo++so
|
||||||
|
ys `yNmy- .+hmmho:-.` ```
|
||||||
|
s: yNm+` .smNd+.
|
||||||
|
`` /Nm: +dNd+`
|
||||||
|
yN+ `smNy.
|
||||||
|
dm oNNy`
|
||||||
|
hy -mNm.
|
||||||
|
+y oNNo
|
||||||
|
`y` sNN:
|
||||||
|
`: +NN:
|
||||||
|
` .mNo
|
||||||
|
/mm`
|
||||||
|
/my`
|
||||||
|
.sy`
|
||||||
|
.+:
|
||||||
|
`
|
18
ascii/distro/puppy
Normal file
18
ascii/distro/puppy
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} `-/osyyyysosyhhhhhyys+-
|
||||||
|
-ohmNNmh+/hMMMMMMMMNNNNd+dMMMMNM+
|
||||||
|
yMMMMNNmmddo/NMMMNNNNNNNNNo+NNNNNy
|
||||||
|
.NNNNNNmmmddds:MMNNNNNNNNNNNh:mNNN/
|
||||||
|
-NNNdyyyhdmmmd`dNNNNNmmmmNNmdd/os/
|
||||||
|
.Nm+shddyooo+/smNNNNmmmmNh. :mmd.
|
||||||
|
NNNNy:` ./hmmmmmmmNNNN: hNMh
|
||||||
|
NMN- -++- +NNNNNNNNNNm+..-sMMMM-
|
||||||
|
.MMo oNNNNo hNNNNNNNNmhdNNNMMMMM+
|
||||||
|
.MMs /NNNN/ dNmhs+:-` yMMMMMMMM+
|
||||||
|
mMM+ .. `sNN+. hMMMMhhMMM-
|
||||||
|
+MMMmo:...:sNMMMMMms:` hMMMMm.hMMy
|
||||||
|
yMMMMMMMMMMMNdMMMMMM::/+o+//dMMd`
|
||||||
|
sMMMMMMMMMMN+:oyyo:sMMMNNMMMNy`
|
||||||
|
:mMMMMMMMMMMMmddNMMMMMMMMmh/
|
||||||
|
/dMMMMMMMMMMMMMMMMMMNdy/`
|
||||||
|
.+hNMMMMMMMMMNmdhs/.
|
||||||
|
.:/+ooo+/:-.
|
21
ascii/distro/qubes
Normal file
21
ascii/distro/qubes
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
${c1} `..--..`
|
||||||
|
`.----------.`
|
||||||
|
`..----------------..`
|
||||||
|
`.------------------------.``
|
||||||
|
`..-------------....-------------..`
|
||||||
|
.::----------..`` ``..----------:+:
|
||||||
|
:////:----..` `..---:/ossso
|
||||||
|
:///////:` `/osssssso
|
||||||
|
:///////: /ssssssso
|
||||||
|
:///////: /ssssssso
|
||||||
|
:///////: /ssssssso
|
||||||
|
:///////: /ssssssso
|
||||||
|
:///////: /ssssssso
|
||||||
|
:////////-` .:sssssssso
|
||||||
|
:///////////-.` `-/osssssssssso
|
||||||
|
`//////////////:-```.:+ssssssssssssso-
|
||||||
|
.-://////////////sssssssssssssso/-`
|
||||||
|
`.:///////////sssssssssssssso:.
|
||||||
|
.-:///////ssssssssssssssssss/`
|
||||||
|
`.:////ssss+/+ssssssssssss.
|
||||||
|
`--//- `-/osssso/.
|
18
ascii/distro/raspbian
Normal file
18
ascii/distro/raspbian
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} .',;:cc;,'. .,;::c:,,.
|
||||||
|
,ooolcloooo: 'oooooccloo:
|
||||||
|
.looooc;;:ol :oc;;:ooooo'
|
||||||
|
;oooooo: ,ooooooc.
|
||||||
|
.,:;'. .;:;'.
|
||||||
|
${c2}.... ..'''''. ....
|
||||||
|
.''. ..'''''. ..''.
|
||||||
|
.. ..... ..... ..
|
||||||
|
. .''''''' .''''''. .
|
||||||
|
.'' .'''''''' .'''''''. ''.
|
||||||
|
''' ''''''' .'''''' '''
|
||||||
|
.' ........... ... .'.
|
||||||
|
.... ''''''''. .''.
|
||||||
|
'''''. ''''''''. .'''''
|
||||||
|
'''''. .'''''. .'''''.
|
||||||
|
..''. . .''..
|
||||||
|
.'''''''
|
||||||
|
......
|
16
ascii/distro/redhat
Normal file
16
ascii/distro/redhat
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c1} `.-..........`
|
||||||
|
`////////::.`-/.
|
||||||
|
-: ....-////////.
|
||||||
|
//:-::///////////`
|
||||||
|
`--::: `-://////////////:
|
||||||
|
//////- ``.-:///////// .`
|
||||||
|
`://////:-.` :///////::///:`
|
||||||
|
.-/////////:---/////////////:
|
||||||
|
.-://////////////////////.
|
||||||
|
${c2} yMN+`.-${c1}::///////////////-`
|
||||||
|
${c2} .-`:NMMNMs` `..-------..`
|
||||||
|
MN+/mMMMMMhoooyysshsss
|
||||||
|
MMM MMMMMMMMMMMMMMyyddMMM+
|
||||||
|
MMMM MMMMMMMMMMMMMNdyNMMh` hyhMMM
|
||||||
|
MMMMMMMMMMMMMMMMyoNNNMMM+. MMMMMMMM
|
||||||
|
MMNMMMNNMMMMMNM+ mhsMNyyyyMNMMMMsMM
|
18
ascii/distro/redstar
Normal file
18
ascii/distro/redstar
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} ..
|
||||||
|
.oK0l
|
||||||
|
:0KKKKd.
|
||||||
|
.xKO0KKKKd
|
||||||
|
,Od' .d0000l
|
||||||
|
.c;. .'''... ..'.
|
||||||
|
.,:cloddxxxkkkkOOOOkkkkkkkkxxxxxxxxxkkkx:
|
||||||
|
;kOOOOOOOkxOkc'...',;;;;,,,'',;;:cllc:,.
|
||||||
|
.okkkkd,.lko .......',;:cllc:;,,'''''.
|
||||||
|
.cdo. :xd' cd:. ..';'',,,'',,;;;,'.
|
||||||
|
. .ddl.;doooc'..;oc;'..';::;,'.
|
||||||
|
coo;.oooolllllllcccc:'. .
|
||||||
|
.ool''lllllccccccc:::::;.
|
||||||
|
;lll. .':cccc:::::::;;;;'
|
||||||
|
:lcc:'',..';::::;;;;;;;,,.
|
||||||
|
:cccc::::;...';;;;;,,,,,,.
|
||||||
|
,::::::;;;,'. ..',,,,'''.
|
||||||
|
........ ......
|
20
ascii/distro/rosa
Normal file
20
ascii/distro/rosa
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} ROSAROSAROSAROSAR
|
||||||
|
ROSA AROS
|
||||||
|
ROS SAROSAROSAROSAR AROS
|
||||||
|
RO ROSAROSAROSAROSAROSAR RO
|
||||||
|
ARO AROSAROSAROSARO AROS ROS
|
||||||
|
ARO ROSAROS OSAR ROSA ROS
|
||||||
|
RO AROSA ROSAROSAROSA ROSAR RO
|
||||||
|
RO ROSAR ROSAROSAROSAR R ROSARO RO
|
||||||
|
RO ROSA AROSAROSAROSA AR ROSARO AR
|
||||||
|
RO AROS ROSAROSAROSA ROS AROSARO AR
|
||||||
|
RO AROS ROSAROSARO ROSARO ROSARO AR
|
||||||
|
RO ROS AROSAROS ROSAROSA AROSAR AR
|
||||||
|
RO ROSA ROS ROSAROSAR ROSARO RO
|
||||||
|
RO ROS AROSAROSAROSA ROSARO AR
|
||||||
|
ARO ROSA ROSAROSAROS AROSAR ARO
|
||||||
|
ARO OROSA R ROSAROS ROS
|
||||||
|
RO AROSAROS AROSAROSAR RO
|
||||||
|
AROS AROSAROSAROSARO AROS
|
||||||
|
ROSA SARO
|
||||||
|
ROSAROSAROSAROSAR
|
18
ascii/distro/sabayon
Normal file
18
ascii/distro/sabayon
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} ...........
|
||||||
|
.. ..
|
||||||
|
.. ..
|
||||||
|
.. ${c2}o ${c1}..
|
||||||
|
.. ${c2}:W' ${c1}..
|
||||||
|
.. ${c2}.d. ${c1}..
|
||||||
|
:. ${c2}.KNO ${c1}.:
|
||||||
|
:. ${c2}cNNN. ${c1}.:
|
||||||
|
: ${c2}dXXX, ${c1}:
|
||||||
|
: ${c2}. dXXX, .cd, ${c1}:
|
||||||
|
: ${c2}'kc .. dKKK. ,ll;:' ${c1}:
|
||||||
|
: ${c2}.xkkxc;..dkkkc',cxkkl ${c1}:
|
||||||
|
:. ${c2}.,cdddddddddddddo:. ${c1}.:
|
||||||
|
.. ${c2}:lllllll: ${c1}..
|
||||||
|
.. ${c2}',,,,, ${c1}..
|
||||||
|
.. ..
|
||||||
|
.. ..
|
||||||
|
...............
|
18
ascii/distro/sailfishos
Normal file
18
ascii/distro/sailfishos
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} .+eWWW
|
||||||
|
.+ee+++eee e.
|
||||||
|
.ee++eeeeeeee +e.
|
||||||
|
.e++ee++eeeeeee+eee+e+
|
||||||
|
ee.e+.ee+eee++eeeeee+
|
||||||
|
W.+e.e+.e++ee+eee
|
||||||
|
W.+e.W.ee.W++ee'
|
||||||
|
+e.W W.e+.W.W+
|
||||||
|
W.e.+e.W W W.
|
||||||
|
e e e +e.W.W
|
||||||
|
.W W W.
|
||||||
|
W.+e.W.
|
||||||
|
W++e.ee+.
|
||||||
|
++ +ee++eeeee++.
|
||||||
|
' '+++e 'ee.
|
||||||
|
ee
|
||||||
|
ee
|
||||||
|
e
|
20
ascii/distro/scientific
Normal file
20
ascii/distro/scientific
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} =/;;/-
|
||||||
|
+: //
|
||||||
|
/; /;
|
||||||
|
-X H.
|
||||||
|
.//;;;:;;-, X= :+ .-;:=;:;#;.
|
||||||
|
M- ,=;;;#:, ,:#;;:=, ,@
|
||||||
|
:# :#.=/++++/=.$= #=
|
||||||
|
,#; #/:+/;,,/++:+/ ;+.
|
||||||
|
,+/. ,;@+, ,#H;, ,/+,
|
||||||
|
;+;;/= @. ${c3}.H${c2}#${c3}#X ${c1}-X :///+;
|
||||||
|
;+=;;;.@, ${c2}.X${c3}M${c2}@$. ${c1}=X.//;=#/.
|
||||||
|
,;: :@#= =$H: .+#-
|
||||||
|
,#= #;-///==///-// =#,
|
||||||
|
;+ :#-;;;:;;;;-X- +:
|
||||||
|
@- .-;;;;M- =M/;;;-. -X
|
||||||
|
:;;::;;-. #- :+ ,-;;-;:==
|
||||||
|
,X H.
|
||||||
|
;/ #=
|
||||||
|
// +;
|
||||||
|
'////'
|
21
ascii/distro/slackware
Normal file
21
ascii/distro/slackware
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
${c1} :::::::
|
||||||
|
:::::::::::::::::::
|
||||||
|
:::::::::::::::::::::::::
|
||||||
|
::::::::${c2}cllcccccllllllll${c1}::::::
|
||||||
|
:::::::::${c2}lc dc${c1}:::::::
|
||||||
|
::::::::${c2}cl clllccllll oc${c1}:::::::::
|
||||||
|
:::::::::${c2}o lc${c1}::::::::${c2}co oc${c1}::::::::::
|
||||||
|
::::::::::${c2}o cccclc${c1}:::::${c2}clcc${c1}::::::::::::
|
||||||
|
:::::::::::${c2}lc cclccclc${c1}:::::::::::::
|
||||||
|
::::::::::::::${c2}lcclcc lc${c1}::::::::::::
|
||||||
|
::::::::::${c2}cclcc${c1}:::::${c2}lccclc oc${c1}:::::::::::
|
||||||
|
::::::::::${c2}o l${c1}::::::::::${c2}l lc${c1}:::::::::::
|
||||||
|
:::::${c2}cll${c1}:${c2}o clcllcccll o${c1}:::::::::::
|
||||||
|
:::::${c2}occ${c1}:${c2}o clc${c1}:::::::::::
|
||||||
|
::::${c2}ocl${c1}:${c2}ccslclccclclccclclc${c1}:::::::::::::
|
||||||
|
:::${c2}oclcccccccccccccllllllllllllll${c1}:::::
|
||||||
|
::${c2}lcc1lcccccccccccccccccccccccco${c1}::::
|
||||||
|
::::::::::::::::::::::::::::::::
|
||||||
|
::::::::::::::::::::::::::::
|
||||||
|
::::::::::::::::::::::
|
||||||
|
::::::::::::
|
8
ascii/distro/solaris
Normal file
8
ascii/distro/solaris
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
${c1} `- `
|
||||||
|
`-- `+- .:
|
||||||
|
.+: `++: -/+- .
|
||||||
|
`.::` -++/``:::`./+/ `.-/.
|
||||||
|
`++/-`.` ` /++:`
|
||||||
|
`` ./:` .: `..`.-
|
||||||
|
``./+/:- -+++:-
|
||||||
|
-/+` :.
|
20
ascii/distro/solus
Normal file
20
ascii/distro/solus
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c2} -```````````
|
||||||
|
`-+/------------.`
|
||||||
|
.---:mNo---------------.
|
||||||
|
.-----yMMMy:---------------.
|
||||||
|
`------oMMMMMm/----------------`
|
||||||
|
.------/MMMMMMMN+----------------.
|
||||||
|
.------/NMMMMMMMMm-+/--------------.
|
||||||
|
`------/NMMMMMMMMMN-:mh/-------------`
|
||||||
|
.-----/NMMMMMMMMMMM:-+MMd//oso/:-----.
|
||||||
|
-----/NMMMMMMMMMMMM+--mMMMh::smMmyo:--
|
||||||
|
----+NMMMMMMMMMMMMMo--yMMMMNo-:yMMMMd/.
|
||||||
|
.--oMMMMMMMMMMMMMMMy--yMMMMMMh:-yMMMy-`
|
||||||
|
`-sMMMMMMMMMMMMMMMMh--dMMMMMMMd:/Ny+y.
|
||||||
|
`-/+osyhhdmmNNMMMMMm-/MMMMMMMmh+/ohm+
|
||||||
|
.------------:://+-/++++++${c1}oshddys:
|
||||||
|
-hhhhyyyyyyyyyyyhhhhddddhysssso-
|
||||||
|
`:ossssssyysssssssssssssssso:`
|
||||||
|
`:+ssssssssssssssssssss+-
|
||||||
|
`-/+ssssssssssso+/-`
|
||||||
|
`.-----..`
|
21
ascii/distro/sparky
Normal file
21
ascii/distro/sparky
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
${c1}
|
||||||
|
. `-:-`
|
||||||
|
.o` .-///-`
|
||||||
|
`oo` .:/++:.
|
||||||
|
os+` -/+++:` ``.........```
|
||||||
|
/ys+`./+++/-.-::::::----......``
|
||||||
|
`syyo`++o+--::::-::/+++/-``
|
||||||
|
-yyy+.+o+`:/:-:sdmmmmmmmmdy+-`
|
||||||
|
::-` :yyy/-oo.-+/`ymho++++++oyhdmdy/`
|
||||||
|
`/yy+-`.syyo`+o..o--h..osyhhddhs+//osyy/`
|
||||||
|
-ydhs+-oyy/.+o.-: ` ` :/::+ydhy+```-os-
|
||||||
|
.sdddy::syo--/:. `.:dy+-ohhho ./:
|
||||||
|
:yddds/:+oo+//:-`- /+ +hy+.shhy: ``
|
||||||
|
`:ydmmdysooooooo-.ss`/yss--oyyo
|
||||||
|
`./ossyyyyo+:-/oo:.osso- .oys
|
||||||
|
``..-------::////.-oooo/ :so
|
||||||
|
`...----::::::::--.`/oooo: .o:
|
||||||
|
``````` ++o+:` `:`
|
||||||
|
./+/-` `
|
||||||
|
`-:-.
|
||||||
|
``
|
18
ascii/distro/steamos
Normal file
18
ascii/distro/steamos
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} .,,,,.
|
||||||
|
.,'onNMMMMMNNnn',.
|
||||||
|
.'oNMANKMMMMMMMMMMMNNn'.
|
||||||
|
.'ANMMMMMMMXKNNWWWPFFWNNMNn.
|
||||||
|
;NNMMMMMMMMMMNWW'' ,.., 'WMMM,
|
||||||
|
;NMMMMV+##+VNWWW' .+;'':+, 'WMW,
|
||||||
|
,VNNWP+${c2}######${c1}+WW, ${c2}+: ${c1}:+, +MMM,
|
||||||
|
'${c2}+#############, +. ,+' ${c1}+NMMM
|
||||||
|
${c2} '*#########*' '*,,*' ${c1}.+NMMMM.
|
||||||
|
${c2} `'*###*' ,.,;###${c1}+WNM,
|
||||||
|
${c2} .,;;, .;##########${c1}+W
|
||||||
|
${c2},',. '; ,+##############'
|
||||||
|
'###+. :,. .,; ,###############'
|
||||||
|
'####.. `'' .,###############'
|
||||||
|
'#####+++################'
|
||||||
|
'*##################*'
|
||||||
|
''*##########*''
|
||||||
|
''''''
|
18
ascii/distro/suse
Normal file
18
ascii/distro/suse
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c2} .;ldkO0000Okdl;.
|
||||||
|
.;d00xl:^''''''^:ok00d;.
|
||||||
|
.d00l' 'o00d.
|
||||||
|
.d0Kd'${c1} Okxol:;,. ${c2}:O0d.
|
||||||
|
.OK${c1}KKK0kOKKKKKKKKKKOxo:, ${c2}lKO.
|
||||||
|
,0K${c1}KKKKKKKKKKKKKKK0P^${c2},,,${c1}^dx:${c2} ;00,
|
||||||
|
.OK${c1}KKKKKKKKKKKKKKKk'${c2}.oOPPb.${c1}'0k.${c2} cKO.
|
||||||
|
:KK${c1}KKKKKKKKKKKKKKK: ${c2}kKx..dd ${c1}lKd${c2} 'OK:
|
||||||
|
dKK${c1}KKKKKKKKKOx0KKKd ${c2}^0KKKO' ${c1}kKKc${c2} dKd
|
||||||
|
dKK${c1}KKKKKKKKKK;.;oOKx,..${c2}^${c1}..;kKKK0.${c2} dKd
|
||||||
|
:KK${c1}KKKKKKKKKK0o;...^cdxxOK0O/^^' ${c2}.0K:
|
||||||
|
kKK${c1}KKKKKKKKKKKKK0x;,,......,;od ${c2}lKk
|
||||||
|
'0K${c1}KKKKKKKKKKKKKKKKKKKK00KKOo^ ${c2}c00'
|
||||||
|
'kK${c1}KKOxddxkOO00000Okxoc;'' ${c2}.dKk'
|
||||||
|
l0Ko. .c00l'
|
||||||
|
'l0Kk:. .;xK0l'
|
||||||
|
'lkK0xl:;,,,,;:ldO0kl'
|
||||||
|
'^:ldxkkkkxdl:^'
|
19
ascii/distro/tails
Normal file
19
ascii/distro/tails
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} ``
|
||||||
|
./yhNh
|
||||||
|
syy/Nshh `:o/
|
||||||
|
N:dsNshh █ `ohNMMd
|
||||||
|
N-/+Nshh `yMMMMd
|
||||||
|
N-yhMshh yMMMMd
|
||||||
|
N-s:hshh █ yMMMMd so//.
|
||||||
|
N-oyNsyh yMMMMd d Mms.
|
||||||
|
N:hohhhd:. yMMMMd syMMM+
|
||||||
|
Nsyh+-..+y+- yMMMMd :mMM+
|
||||||
|
+hy- -ss/`yMMMM `+d+
|
||||||
|
:sy/. ./yNMMMMm ``
|
||||||
|
.+ys- `:+hNMMMMMMy/`
|
||||||
|
`hNmmMMMMMMMMMMMMdo.
|
||||||
|
dMMMMMMMMMMMMMMMMMNh:
|
||||||
|
+hMMMMMMMMMMMMMMMMMmy.
|
||||||
|
-oNMMMMMMMMMMmy+.`
|
||||||
|
`:yNMMMds/.`
|
||||||
|
.//`
|
6
ascii/distro/travis
Normal file
6
ascii/distro/travis
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
${c1} _______ _
|
||||||
|
${c2}|__ __| | |
|
||||||
|
${c3} | | ___ ___| |_
|
||||||
|
${c4} | |/ _ \/ __| __|
|
||||||
|
${c5} | | __/\__ \ |_
|
||||||
|
${c6} |_|\___||___/\__|
|
18
ascii/distro/trisquel
Normal file
18
ascii/distro/trisquel
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} ▄▄▄▄▄▄
|
||||||
|
▄█████████▄
|
||||||
|
▄▄▄▄▄▄ ████▀ ▀████
|
||||||
|
▄██████████▄ ████▀ ▄▄ ▀███
|
||||||
|
▄███▀▀ ▀▀████ ███▄ ▄█ ███
|
||||||
|
▄███ ▄▄▄ ████▄ ▀██████ ▄███
|
||||||
|
███ █▀▀██▄ █████▄ ▀▀ ▄████
|
||||||
|
▀███ ███ ███████▄▄ ▄▄██████
|
||||||
|
${c1} ▀███▄ ▄███ █████████████${c2}████▀
|
||||||
|
${c1} ▀█████████ ███████${c2}███▀▀▀
|
||||||
|
▀▀███▀▀ ██████▀▀
|
||||||
|
██████▀ ▄▄▄▄
|
||||||
|
█████▀ ████████
|
||||||
|
█████ ███▀ ▀███
|
||||||
|
████▄ ██▄▄▄ ███
|
||||||
|
█████▄ ▀▀ ▄██
|
||||||
|
██████▄▄▄████
|
||||||
|
▀▀█████▀▀
|
18
ascii/distro/ubuntu
Normal file
18
ascii/distro/ubuntu
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} ./+o+-
|
||||||
|
${c2} yyyyy- ${c1}-yyyyyy+
|
||||||
|
${c2} ${c2}://+//////${c1}-yyyyyyo
|
||||||
|
${c3} .++ ${c2}.:/++++++/-${c1}.+sss/`
|
||||||
|
${c3} .:++o: ${c2}/++++++++/:--:/-
|
||||||
|
${c3} o:+o+:++.${c2}`..```.-/oo+++++/
|
||||||
|
${c3} .:+o:+o/.${c2} `+sssoo+/
|
||||||
|
${c2} .++/+:${c3}+oo+o:`${c2} /sssooo.
|
||||||
|
${c2}/+++//+:${c3}`oo+o${c2} /::--:.
|
||||||
|
${c2}+/+o+++${c3}`o++o${c1} ++////.
|
||||||
|
${c2} .++.o+${c3}++oo+:`${c1} /dddhhh.
|
||||||
|
${c3} .+.o+oo:.${c1} `oddhhhh+
|
||||||
|
${c3} +.++o+o`${c1}`-````.:ohdhhhhh+
|
||||||
|
${c3} `:o+++ ${c1}`ohhhhhhhhyo++os:
|
||||||
|
${c3} .o:${c1}`.syhhhhhhh/${c3}.oo++o`
|
||||||
|
${c1} /osyyyyyyo${c3}++ooo+++/
|
||||||
|
${c1} ````` ${c3}+oo+++o:
|
||||||
|
${c3} `oo++.
|
16
ascii/distro/ubuntu-gnome
Normal file
16
ascii/distro/ubuntu-gnome
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c3} ./o.
|
||||||
|
.oooooooo
|
||||||
|
.oooo```soooo
|
||||||
|
.oooo` `soooo
|
||||||
|
.ooo` ${c4}.o.${c3} `\/ooo.
|
||||||
|
:ooo ${c4}:oooo.${c3} `\/ooo.
|
||||||
|
sooo ${c4}`ooooo${c3} \/oooo
|
||||||
|
\/ooo ${c4}`soooo${c3} `ooooo
|
||||||
|
`soooo ${c4}`\/ooo${c3} `soooo
|
||||||
|
${c4}./oo ${c3}`\/ooo ${c4}`/oooo.${c3} `/ooo
|
||||||
|
${c4}`\/ooo. ${c3}`/oooo. ${c4}`/oooo.${c3} ``
|
||||||
|
${c4} `\/ooo. ${c3}/oooo ${c4}/ooo`
|
||||||
|
${c4} `ooooo ${c3}`` ${c4}.oooo
|
||||||
|
${c4} `soooo. .oooo`
|
||||||
|
`\/oooooooooo`
|
||||||
|
``\/oo``
|
18
ascii/distro/void
Normal file
18
ascii/distro/void
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
${c1} __.;=====;.__
|
||||||
|
_.=+==++=++=+=+===;.
|
||||||
|
-=+++=+===+=+=+++++=_
|
||||||
|
. -=:`` `--==+=++==.
|
||||||
|
_vi, ` --+=++++:
|
||||||
|
.uvnvi. _._ -==+==+.
|
||||||
|
.vvnvnI` .;==|==;. :|=||=|.
|
||||||
|
${c2}+QmQQm${c1}pvvnv; ${c2}_yYsyQQWUUQQQm #QmQ#${c1}:${c2}QQQWUV$QQmL
|
||||||
|
${c2} -QQWQW${c1}pvvo${c2}wZ?.wQQQE${c1}==<${c2}QWWQ/QWQW.QQWW${c1}(: ${c2}jQWQE
|
||||||
|
${c2} -$QQQQmmU' jQQQ@${c1}+=<${c2}QWQQ)mQQQ.mQQQC${c1}+;${c2}jWQQ@'
|
||||||
|
${c2} -$WQ8Y${c1}nI: ${c2}QWQQwgQQWV${c1}`${c2}mWQQ.jQWQQgyyWW@!
|
||||||
|
${c1} -1vvnvv. `~+++` ++|+++
|
||||||
|
+vnvnnv, `-|===
|
||||||
|
+vnvnvns. . :=-
|
||||||
|
-Invnvvnsi..___..=sv=. `
|
||||||
|
+Invnvnvnnnnnnnnvvnn;.
|
||||||
|
~|Invnvnvvnvvvnnv}+`
|
||||||
|
-~|{*l}*|~
|
16
ascii/distro/windows
Normal file
16
ascii/distro/windows
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
${c1} ,.=:!!t3Z3z.,
|
||||||
|
:tt:::tt333EE3
|
||||||
|
${c1} Et:::ztt33EEEL${c2} @Ee., ..,
|
||||||
|
${c1} ;tt:::tt333EE7${c2} ;EEEEEEttttt33#
|
||||||
|
${c1} :Et:::zt333EEQ.${c2} $EEEEEttttt33QL
|
||||||
|
${c1} it::::tt333EEF${c2} @EEEEEEttttt33F
|
||||||
|
${c1} ;3=*^```"*4EEV${c2} :EEEEEEttttt33@.
|
||||||
|
${c3} ,.=::::!t=., ${c1}`${c2} @EEEEEEtttz33QF
|
||||||
|
${c3} ;::::::::zt33)${c2} "4EEEtttji3P*
|
||||||
|
${c3} :t::::::::tt33.${c4}:Z3z..${c2} ``${c4} ,..g.
|
||||||
|
${c3} i::::::::zt33F${c4} AEEEtttt::::ztF
|
||||||
|
${c3} ;:::::::::t33V${c4} ;EEEttttt::::t3
|
||||||
|
${c3} E::::::::zt33L${c4} @EEEtttt::::z3F
|
||||||
|
${c3}{3=*^```"*4E3)${c4} ;EEEtttt:::::tZ`
|
||||||
|
${c3} `${c4} :EEEEtttt::::z7
|
||||||
|
"VEzjt:;;z>*`
|
19
ascii/distro/windows10
Normal file
19
ascii/distro/windows10
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
${c1} ..,
|
||||||
|
....,,:;+ccllll
|
||||||
|
...,,+:; cllllllllllllllllll
|
||||||
|
,cclllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
llllllllllllll lllllllllllllllllll
|
||||||
|
`'ccllllllllll lllllllllllllllllll
|
||||||
|
`' \\*:: :ccllllllllllllllll
|
||||||
|
````''*::cll
|
||||||
|
``
|
20
ascii/distro/xubuntu
Normal file
20
ascii/distro/xubuntu
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
${c1} `-/osyhddddhyso/-`
|
||||||
|
.+yddddddddddddddddddy+.
|
||||||
|
:yddddddddddddddddddddddddy:
|
||||||
|
-yddddddddddddddddddddhdddddddy-
|
||||||
|
odddddddddddyshdddddddh`dddd+ydddo
|
||||||
|
`yddddddhshdd- ydddddd+`ddh.:dddddy`
|
||||||
|
sddddddy /d. :dddddd-:dy`-ddddddds
|
||||||
|
:ddddddds /+ .dddddd`yy`:ddddddddd:
|
||||||
|
sdddddddd` . .-:/+ssdyodddddddddds
|
||||||
|
ddddddddy `:ohddddddddd
|
||||||
|
dddddddd. +dddddddd
|
||||||
|
sddddddy ydddddds
|
||||||
|
:dddddd+ .oddddddd:
|
||||||
|
sdddddo ./ydddddddds
|
||||||
|
`yddddd. `:ohddddddddddy`
|
||||||
|
oddddh/` `.:+shdddddddddddddo
|
||||||
|
-ydddddhyssyhdddddddddddddddddy-
|
||||||
|
:yddddddddddddddddddddddddy:
|
||||||
|
.+yddddddddddddddddddy+.
|
||||||
|
`-/osyhddddhyso/-`
|
17
ascii/distro/zorin
Normal file
17
ascii/distro/zorin
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
${c1} `osssssssssssssssssssso`
|
||||||
|
.osssssssssssssssssssssso.
|
||||||
|
.+oooooooooooooooooooooooo+.
|
||||||
|
|
||||||
|
|
||||||
|
`::::::::::::::::::::::. .:`
|
||||||
|
`+ssssssssssssssssss+:.` `.:+ssso`
|
||||||
|
.ossssssssssssssso/. `-+ossssssso.
|
||||||
|
ssssssssssssso/-` `-/osssssssssssss
|
||||||
|
.ossssssso/-` .-/ossssssssssssssso.
|
||||||
|
`+sss+:. `.:+ssssssssssssssssss+`
|
||||||
|
`:. .::::::::::::::::::::::`
|
||||||
|
|
||||||
|
|
||||||
|
.+oooooooooooooooooooooooo+.
|
||||||
|
-osssssssssssssssssssssso-
|
||||||
|
`osssssssssssssssssssso`
|
684
config/config
Normal file
684
config/config
Normal file
@ -0,0 +1,684 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Neofetch config file
|
||||||
|
# https://github.com/dylanaraps/neofetch
|
||||||
|
|
||||||
|
# Speed up script by not using unicode
|
||||||
|
export LC_ALL=C
|
||||||
|
export LANG=C
|
||||||
|
|
||||||
|
# See this wiki page for more info:
|
||||||
|
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
|
||||||
|
print_info() {
|
||||||
|
info title
|
||||||
|
info underline
|
||||||
|
|
||||||
|
info "OS" distro
|
||||||
|
info "Model" model
|
||||||
|
info "Kernel" kernel
|
||||||
|
info "Uptime" uptime
|
||||||
|
info "Packages" packages
|
||||||
|
info "Shell" shell
|
||||||
|
info "Resolution" resolution
|
||||||
|
info "DE" de
|
||||||
|
info "WM" wm
|
||||||
|
info "WM Theme" wm_theme
|
||||||
|
info "Theme" theme
|
||||||
|
info "Icons" icons
|
||||||
|
info "Terminal" term
|
||||||
|
info "Terminal Font" term_font
|
||||||
|
info "CPU" cpu
|
||||||
|
info "GPU" gpu
|
||||||
|
info "Memory" memory
|
||||||
|
|
||||||
|
# info "CPU Usage" cpu_usage
|
||||||
|
# info "Disk" disk
|
||||||
|
# info "Battery" battery
|
||||||
|
# info "Font" font
|
||||||
|
# info "Song" song
|
||||||
|
# info "Local IP" local_ip
|
||||||
|
# info "Public IP" public_ip
|
||||||
|
# info "Users" users
|
||||||
|
# info "Birthday" birthday
|
||||||
|
|
||||||
|
info line_break
|
||||||
|
info cols
|
||||||
|
info line_break
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Kernel
|
||||||
|
|
||||||
|
|
||||||
|
# Shorten the output of the kernel function.
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --kernel_shorthand
|
||||||
|
# Supports: Everything except *BSDs (except PacBSD and PC-BSD)
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: '4.8.9-1-ARCH'
|
||||||
|
# off: 'Linux 4.8.9-1-ARCH'
|
||||||
|
kernel_shorthand="on"
|
||||||
|
|
||||||
|
|
||||||
|
# Distro
|
||||||
|
|
||||||
|
|
||||||
|
# Shorten the output of the distro function
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off', 'tiny'
|
||||||
|
# Flag: --distro_shorthand
|
||||||
|
# Supports: Everything except Windows and Haiku
|
||||||
|
distro_shorthand="off"
|
||||||
|
|
||||||
|
# Show/Hide OS Architecture.
|
||||||
|
# Show 'x86_64', 'x86' and etc in 'Distro:' output.
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --os_arch
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'Arch Linux x86_64'
|
||||||
|
# off: 'Arch Linux'
|
||||||
|
os_arch="on"
|
||||||
|
|
||||||
|
|
||||||
|
# Uptime
|
||||||
|
|
||||||
|
|
||||||
|
# Shorten the output of the uptime function
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off', 'tiny'
|
||||||
|
# Flag: --uptime_shorthand
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: '2 days, 10 hours, 3 mins'
|
||||||
|
# off: '2 days, 10 hours, 3 minutes'
|
||||||
|
# tiny: '2d 10h 3m'
|
||||||
|
uptime_shorthand="off"
|
||||||
|
|
||||||
|
|
||||||
|
# Shell
|
||||||
|
|
||||||
|
|
||||||
|
# Show the path to $SHELL
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --shell_path
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: '/bin/bash'
|
||||||
|
# off: 'bash'
|
||||||
|
shell_path="off"
|
||||||
|
|
||||||
|
# Show $SHELL version
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --shell_version
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'bash 4.4.5'
|
||||||
|
# off: 'bash'
|
||||||
|
shell_version="on"
|
||||||
|
|
||||||
|
|
||||||
|
# CPU
|
||||||
|
|
||||||
|
|
||||||
|
# CPU speed type
|
||||||
|
#
|
||||||
|
# Default: 'max'
|
||||||
|
# Values: 'current', 'min', 'max', 'bios',
|
||||||
|
# 'scaling_current', 'scaling_min',
|
||||||
|
# 'scaling_max'
|
||||||
|
# Flag: --speed_type
|
||||||
|
# Supports: Linux with 'cpufreq'
|
||||||
|
speed_type="current"
|
||||||
|
|
||||||
|
# Shorten the output of the CPU function
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off', 'tiny', 'name', 'speed'
|
||||||
|
# Flag: --cpu_shorthand
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'i7-6500U (4) @ 3.1GHz'
|
||||||
|
# off: 'Intel i7-6500U (4) @ 3.1GHz'
|
||||||
|
# tiny: 'i7-6500U (4)'
|
||||||
|
# name: 'Intel i7-6500U (4)'
|
||||||
|
# speed: '3.1GHz'
|
||||||
|
cpu_shorthand="off"
|
||||||
|
|
||||||
|
# CPU Speed
|
||||||
|
# Hide/Show CPU speed.
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --cpu_speed
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'Intel i7-6500U (4) @ 3.1GHz'
|
||||||
|
# off: 'Intel i7-6500U (4)'
|
||||||
|
cpu_speed="on"
|
||||||
|
|
||||||
|
# CPU Cores
|
||||||
|
# Display CPU cores in output
|
||||||
|
#
|
||||||
|
# Default: 'logical'
|
||||||
|
# Values: 'logical', 'physical', 'off'
|
||||||
|
# Flag: --cpu_cores
|
||||||
|
# Support: 'physical' doesn't work on BSD.
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores)
|
||||||
|
# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores)
|
||||||
|
# off: 'Intel i7-6500U @ 3.1GHz'
|
||||||
|
cpu_cores="logical"
|
||||||
|
|
||||||
|
# CPU Temperature
|
||||||
|
# Hide/Show CPU temperature.
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --cpu_temp
|
||||||
|
# Supports: Linux
|
||||||
|
cpu_temp="off"
|
||||||
|
|
||||||
|
|
||||||
|
# GPU
|
||||||
|
|
||||||
|
|
||||||
|
# Enable/Disable GPU Brand
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --gpu_brand
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'AMD HD 7950'
|
||||||
|
# off: 'HD 7950'
|
||||||
|
gpu_brand="on"
|
||||||
|
|
||||||
|
|
||||||
|
# Resolution
|
||||||
|
|
||||||
|
|
||||||
|
# Display refresh rate next to each monitor
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --refresh_rate
|
||||||
|
# Supports: Doesn't work on Windows.
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: '1920x1080 @ 60Hz'
|
||||||
|
# off: '1920x1080'
|
||||||
|
refresh_rate="off"
|
||||||
|
|
||||||
|
|
||||||
|
# Gtk Theme / Icons / Font
|
||||||
|
|
||||||
|
|
||||||
|
# Shorten output of GTK Theme / Icons / Font
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --gtk_shorthand
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'Numix, Adwaita'
|
||||||
|
# off: 'Numix [GTK2], Adwaita [GTK3]'
|
||||||
|
gtk_shorthand="off"
|
||||||
|
|
||||||
|
|
||||||
|
# Enable/Disable gtk2 Theme / Icons / Font
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --gtk2
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'Numix [GTK2], Adwaita [GTK3]'
|
||||||
|
# off: 'Adwaita [GTK3]'
|
||||||
|
gtk2="on"
|
||||||
|
|
||||||
|
# Enable/Disable gtk3 Theme / Icons / Font
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --gtk3
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'Numix [GTK2], Adwaita [GTK3]'
|
||||||
|
# off: 'Numix [GTK2]'
|
||||||
|
gtk3="on"
|
||||||
|
|
||||||
|
|
||||||
|
# IP Address
|
||||||
|
|
||||||
|
|
||||||
|
# Website to ping for the public IP
|
||||||
|
#
|
||||||
|
# Default: 'http://ident.me'
|
||||||
|
# Values: 'url'
|
||||||
|
# Flag: --ip_host
|
||||||
|
public_ip_host="http://ident.me"
|
||||||
|
|
||||||
|
|
||||||
|
# Song
|
||||||
|
|
||||||
|
|
||||||
|
# Print the Artist and Title on seperate lines
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --song_shorthand
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'Artist: The Fratellis'
|
||||||
|
# 'Song: Chelsea Dagger'
|
||||||
|
#
|
||||||
|
# off: 'Song: The Fratellis - Chelsea Dagger'
|
||||||
|
song_shorthand="off"
|
||||||
|
|
||||||
|
|
||||||
|
# Birthday
|
||||||
|
|
||||||
|
|
||||||
|
# Shorten the output of the Birthday functon.
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --birthday_shorthand
|
||||||
|
# Supports: 'off' doesn't work on OpenBSD and NetBSD.
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'Thu 14 Apr 2016 11:50 PM'
|
||||||
|
# off: '2016-04-14 23:50:55'
|
||||||
|
birthday_shorthand="off"
|
||||||
|
|
||||||
|
# Whether to show the time in the output
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --birthday_time
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# on: 'Thu 14 Apr 2016 11:50 PM'
|
||||||
|
# off: 'Thu 14 Apr 2016'
|
||||||
|
birthday_time="on"
|
||||||
|
|
||||||
|
# Date format to use when printing birthday
|
||||||
|
#
|
||||||
|
# Default: '+%a %d %b %Y %l:%M %p'
|
||||||
|
# Values: 'date format'
|
||||||
|
# Flag: --birthday_format
|
||||||
|
birthday_format="+%a %d %b %Y %l:%M %p"
|
||||||
|
|
||||||
|
|
||||||
|
# Text Colors
|
||||||
|
|
||||||
|
|
||||||
|
# Text Colors
|
||||||
|
#
|
||||||
|
# Default: 'distro'
|
||||||
|
# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num'
|
||||||
|
# Flag: --colors
|
||||||
|
#
|
||||||
|
# Each number represents a different part of the text in
|
||||||
|
# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info'
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# colors=(distro) - Text is colored based on Distro colors.
|
||||||
|
# colors=(4 6 1 8 8 6) - Text is colored in the order above.
|
||||||
|
colors=(distro)
|
||||||
|
|
||||||
|
|
||||||
|
# Text Options
|
||||||
|
|
||||||
|
|
||||||
|
# Toggle bold text
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --bold
|
||||||
|
bold="on"
|
||||||
|
|
||||||
|
# Enable/Disable Underline
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --underline
|
||||||
|
underline_enabled="on"
|
||||||
|
|
||||||
|
# Underline character
|
||||||
|
#
|
||||||
|
# Default: '-'
|
||||||
|
# Values: 'string'
|
||||||
|
# Flag: --underline_char
|
||||||
|
underline_char="-"
|
||||||
|
|
||||||
|
|
||||||
|
# Color Blocks
|
||||||
|
|
||||||
|
|
||||||
|
# Color block range
|
||||||
|
# Start/End refer to the range of colors
|
||||||
|
# to print in the blocks.
|
||||||
|
#
|
||||||
|
# Default: '0', '7'
|
||||||
|
# Values: 'num'
|
||||||
|
# Flag: --block_range
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
#
|
||||||
|
# Display colors 0-7 in the blocks.
|
||||||
|
# neofetch --block_range 0 7
|
||||||
|
#
|
||||||
|
# Display colors 0-15 in the blocks.
|
||||||
|
# neofetch --block_range 0 15
|
||||||
|
start=0
|
||||||
|
end=7
|
||||||
|
|
||||||
|
# Toggle color blocks
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --color_blocks
|
||||||
|
color_blocks="on"
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
|
||||||
|
# Progress Bars
|
||||||
|
|
||||||
|
|
||||||
|
# Bar characters
|
||||||
|
#
|
||||||
|
# Default: '-', '='
|
||||||
|
# Values: 'string', 'string'
|
||||||
|
# Flag: --bar_char
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# neofetch --bar_char 'elapsed' 'total'
|
||||||
|
# neofetch --bar_char '-' '='
|
||||||
|
bar_char_elapsed="-"
|
||||||
|
bar_char_total="="
|
||||||
|
|
||||||
|
# Toggle Bar border
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --bar_border
|
||||||
|
bar_border="on"
|
||||||
|
|
||||||
|
# Progress bar length in spaces
|
||||||
|
# Number of chars long to make the progress bars.
|
||||||
|
#
|
||||||
|
# Default: '15'
|
||||||
|
# Values: 'num'
|
||||||
|
# Flag: --bar_length
|
||||||
|
bar_length=15
|
||||||
|
|
||||||
|
# Progress bar colors
|
||||||
|
# When set to distro, uses your distro's logo colors.
|
||||||
|
#
|
||||||
|
# Default: 'distro', 'distro'
|
||||||
|
# Values: 'distro', 'num'
|
||||||
|
# Flag: --bar_colors
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# neofetch --bar_colors 3 4
|
||||||
|
# neofetch --bar_colors distro 5
|
||||||
|
bar_color_elapsed="distro"
|
||||||
|
bar_color_total="distro"
|
||||||
|
|
||||||
|
|
||||||
|
# Info display
|
||||||
|
# Display a bar with the info.
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'bar', 'infobar', 'barinfo', 'off'
|
||||||
|
# Flags: --cpu_display
|
||||||
|
# --memory_display
|
||||||
|
# --battery_display
|
||||||
|
# --disk_display
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# bar: '[---=======]'
|
||||||
|
# infobar: 'info [---=======]'
|
||||||
|
# barinfo: '[---=======] info'
|
||||||
|
# off: 'info'
|
||||||
|
cpu_display="off"
|
||||||
|
memory_display="off"
|
||||||
|
battery_display="off"
|
||||||
|
disk_display="off"
|
||||||
|
|
||||||
|
|
||||||
|
# Image Options
|
||||||
|
|
||||||
|
|
||||||
|
# Image Source
|
||||||
|
#
|
||||||
|
# Default: 'wallpaper'
|
||||||
|
# Values: 'wallpaper', '/path/to/img', '/path/to/dir/', 'off'
|
||||||
|
# Flag: --image
|
||||||
|
image_source="wallpaper"
|
||||||
|
|
||||||
|
# Thumbnail directory
|
||||||
|
#
|
||||||
|
# Default: '~/.cache/thumbnails/neofetch'
|
||||||
|
# Values: 'dir'
|
||||||
|
thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch"
|
||||||
|
|
||||||
|
# w3m-img path
|
||||||
|
# Only works with the w3m backend.
|
||||||
|
#
|
||||||
|
# NOTE: Only change this if "neofetch -v" says that it "couldn't find w3m-img".
|
||||||
|
# Neofetch has a function that automatically finds w3m-img for you. It looks
|
||||||
|
# in the following directories:
|
||||||
|
# /usr/lib/w3m/w3mimgdisplay
|
||||||
|
# /usr/libexec/w3m/w3mimgdisplay
|
||||||
|
# /usr/lib64/w3m/w3mimgdisplay
|
||||||
|
# /usr/libexec64/w3m/w3mimgdisplay
|
||||||
|
# If w3m-img is installed elsewhere on your system, open an issue on the repo
|
||||||
|
# and I'll add it to the function inside the script. If w3m-img is installed
|
||||||
|
# in a non-standard way (in your home folder, etc) then change the variable
|
||||||
|
# below to the custom location. Otherwise, don't touch this.
|
||||||
|
w3m_img_path="/usr/lib/w3m/w3mimgdisplay"
|
||||||
|
|
||||||
|
# Crop mode
|
||||||
|
#
|
||||||
|
# Default: 'normal'
|
||||||
|
# Values: 'normal', 'fit', 'fill'
|
||||||
|
# Flag: --crop_mode
|
||||||
|
#
|
||||||
|
# See this wiki page to learn about the fit and fill options.
|
||||||
|
# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F
|
||||||
|
crop_mode="normal"
|
||||||
|
|
||||||
|
# Crop offset
|
||||||
|
# Note: Only affects 'normal' crop mode.
|
||||||
|
#
|
||||||
|
# Default: 'center'
|
||||||
|
# Values: 'northwest', 'north', 'northeast', 'west', 'center'
|
||||||
|
# 'east', 'southwest', 'south', 'southeast'
|
||||||
|
# Flag: --crop_offset
|
||||||
|
crop_offset="center"
|
||||||
|
|
||||||
|
# Image size
|
||||||
|
# The image is half the terminal width by default.
|
||||||
|
#
|
||||||
|
# Default: 'auto'
|
||||||
|
# Values: 'auto', '00px', '00%', 'none'
|
||||||
|
# Flags: --image_size
|
||||||
|
# --size
|
||||||
|
image_size="auto"
|
||||||
|
|
||||||
|
# Ggap between image and text
|
||||||
|
#
|
||||||
|
# Default: '3'
|
||||||
|
# Values: 'num', '-num'
|
||||||
|
# Flag: --gap
|
||||||
|
gap=3
|
||||||
|
|
||||||
|
# Image offsets
|
||||||
|
# Only works with the w3m backend.
|
||||||
|
#
|
||||||
|
# Default: '0'
|
||||||
|
# Values: 'px'
|
||||||
|
# Flags: --xoffset
|
||||||
|
# --yoffset
|
||||||
|
yoffset=0
|
||||||
|
xoffset=0
|
||||||
|
|
||||||
|
# Image background color
|
||||||
|
# Only works with the w3m backend.
|
||||||
|
#
|
||||||
|
# Default: ''
|
||||||
|
# Values: 'color', 'blue'
|
||||||
|
# Flag: --bg_color
|
||||||
|
background_color=
|
||||||
|
|
||||||
|
|
||||||
|
# Ascii Options
|
||||||
|
|
||||||
|
|
||||||
|
# Default ascii image to use
|
||||||
|
# When this is set to distro it will use your
|
||||||
|
# distro's logo as the ascii.
|
||||||
|
#
|
||||||
|
# Default: 'distro'
|
||||||
|
# Values: 'distro', '/path/to/ascii_file'
|
||||||
|
# Flag: --ascii
|
||||||
|
ascii="distro"
|
||||||
|
|
||||||
|
# Ascii distro
|
||||||
|
# Which distro's ascii art to display.
|
||||||
|
#
|
||||||
|
# Default: 'auto'
|
||||||
|
# Values: 'auto', 'distro_name'
|
||||||
|
# Flag: --ascii_distro
|
||||||
|
ascii_distro="auto"
|
||||||
|
|
||||||
|
# Ascii Colors
|
||||||
|
#
|
||||||
|
# Default: 'distro'
|
||||||
|
# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num'
|
||||||
|
# Flag: --ascii_colors
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# ascii_colors=(distro) - Ascii is colored based on Distro colors.
|
||||||
|
# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors.
|
||||||
|
ascii_colors=(distro)
|
||||||
|
|
||||||
|
# Logo size
|
||||||
|
# Arch, Crux and Gentoo have a smaller logo
|
||||||
|
# variant. Changing the value below to small
|
||||||
|
# will make neofetch use the small logo.
|
||||||
|
#
|
||||||
|
# Default: 'normal'
|
||||||
|
# Values: 'normal', 'small'
|
||||||
|
# Flag: --ascii_logo_size
|
||||||
|
ascii_logo_size="normal"
|
||||||
|
|
||||||
|
# Bold ascii logo
|
||||||
|
# Whether or not to bold the ascii logo.
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --ascii_bold
|
||||||
|
ascii_bold="on"
|
||||||
|
|
||||||
|
|
||||||
|
# Scrot Options
|
||||||
|
|
||||||
|
|
||||||
|
# Whether or not to always take a screenshot
|
||||||
|
# You can manually take a screenshot with "--scrot" or "-s"
|
||||||
|
#
|
||||||
|
# Default: 'off'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flags: --scrot
|
||||||
|
# -s
|
||||||
|
scrot="off"
|
||||||
|
|
||||||
|
# Screenshot program to launch
|
||||||
|
# If you're not using 'scrot' change this to your screenshot
|
||||||
|
# program.
|
||||||
|
#
|
||||||
|
# Default: 'scrot -c -d 3'
|
||||||
|
# Values: 'cmd -flags'
|
||||||
|
# Flag: --scrot_cmd
|
||||||
|
scrot_cmd="scrot -c -d 3"
|
||||||
|
|
||||||
|
# Scrot dir
|
||||||
|
# Where to save the screenshots
|
||||||
|
#
|
||||||
|
# Default: '~/Pictures/'
|
||||||
|
# Values: 'dir'
|
||||||
|
# Flag: --scrot_dir
|
||||||
|
#
|
||||||
|
# Note: Neofetch won't create the directory if it doesn't exist.
|
||||||
|
scrot_dir="$HOME/Pictures/"
|
||||||
|
|
||||||
|
# Scrot filename
|
||||||
|
# What to name the screenshots
|
||||||
|
#
|
||||||
|
# Default: 'neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png'
|
||||||
|
# Values: 'string'
|
||||||
|
# Flag: --scrot_name
|
||||||
|
scrot_name="neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png"
|
||||||
|
|
||||||
|
# Image upload host
|
||||||
|
# Where to upload the image.
|
||||||
|
#
|
||||||
|
# Default: 'imgur'
|
||||||
|
# Values: 'imgur', 'teknik'
|
||||||
|
# Flag: --image_host
|
||||||
|
image_host="imgur"
|
||||||
|
|
||||||
|
|
||||||
|
# Config Options
|
||||||
|
|
||||||
|
|
||||||
|
# Enable/Disable config file
|
||||||
|
#
|
||||||
|
# Default: 'on'
|
||||||
|
# Values: 'on', 'off'
|
||||||
|
# Flag: --config
|
||||||
|
# --config off, none
|
||||||
|
#
|
||||||
|
# Note: This option is only used when neofetch sources this config
|
||||||
|
# as a default config and NOT as a user config. Changing this in
|
||||||
|
# your user config won't actually do anything.
|
||||||
|
config="on"
|
||||||
|
|
||||||
|
# Path to custom config file location
|
||||||
|
#
|
||||||
|
# Default: '${XDG_CONFIG_HOME:-${HOME}/.config}/neofetch/config'
|
||||||
|
# Values: '/path/to/config'
|
||||||
|
# Flag: --config_file
|
||||||
|
#
|
||||||
|
# Note: This option is only used when neofetch sources this config
|
||||||
|
# as a default config and NOT as a user config. Changing this in
|
||||||
|
# your user config won't actually do anything.
|
||||||
|
config_file="${XDG_CONFIG_HOME:-${HOME}/.config}/neofetch/config"
|
48
config/travis
Normal file
48
config/travis
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Neofetch config file for travis.ci
|
||||||
|
# https://github.com/dylanaraps/neofetch
|
||||||
|
|
||||||
|
print_info() {
|
||||||
|
info title
|
||||||
|
info underline
|
||||||
|
|
||||||
|
info "Model" model
|
||||||
|
info "OS" distro
|
||||||
|
info "Kernel" kernel
|
||||||
|
info "Uptime" uptime
|
||||||
|
info "Packages" packages
|
||||||
|
info "Shell" shell
|
||||||
|
info "Resolution" resolution
|
||||||
|
info "DE" de
|
||||||
|
info "WM" wm
|
||||||
|
info "WM Theme" wm_theme
|
||||||
|
info "Theme" theme
|
||||||
|
info "Icons" icons
|
||||||
|
info "Terminal" term
|
||||||
|
info "Terminal Font" term_font
|
||||||
|
info "CPU" cpu
|
||||||
|
info "GPU" gpu
|
||||||
|
info "Memory" memory
|
||||||
|
|
||||||
|
info "CPU Usage" cpu_usage
|
||||||
|
info "Disk" disk
|
||||||
|
info "Battery" battery
|
||||||
|
info "Font" font
|
||||||
|
info "Song" song
|
||||||
|
info "Local IP" local_ip
|
||||||
|
info "Public IP" public_ip
|
||||||
|
info "Users" users
|
||||||
|
info "Birthday" birthday
|
||||||
|
|
||||||
|
info line_break
|
||||||
|
info cols
|
||||||
|
info line_break
|
||||||
|
}
|
||||||
|
|
||||||
|
refresh_rate="on"
|
||||||
|
shell_version="on"
|
||||||
|
cpu_display="infobar"
|
||||||
|
memory_display="infobar"
|
||||||
|
disk_display="infobar"
|
||||||
|
cpu_temp="on"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user