Compare commits
124 Commits
1.4.0
...
neofetch-7.3.2
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a1e97cd92 | |||
| 7e59c362be | |||
| 3e8c103479 | |||
| 5be5aa1b51 | |||
| 08f75415eb | |||
| 02b6e9d72d | |||
| 59b9dc6e1a | |||
| 0f302eea60 | |||
| 7c7cba2346 | |||
| f989ec0d20 | |||
| e72fe4d934 | |||
| 7f48e4cd43 | |||
| bc89c50427 | |||
| 7c93a0df1c | |||
| 8b67e539b5 | |||
| 7c16e15cea | |||
| 79e0a8360b | |||
| d2347cefb1 | |||
| cda96dda4e | |||
| 3dde4bcdef | |||
| 0811acab58 | |||
| f14324ffce | |||
| 1ba7b339c9 | |||
| 8987b0b15f | |||
| 4f12d97e40 | |||
| c3beb21966 | |||
| 078af21630 | |||
| 4e7724ecf8 | |||
| 624bd97045 | |||
| 45ea478414 | |||
| 9e001c530f | |||
| d850e4c91e | |||
| 376268f79e | |||
| b955a61ac5 | |||
| c099c9e5f7 | |||
| 7b62c80881 | |||
| d6b33ae3e9 | |||
| 9da32dab4b | |||
| cf0202fd7c | |||
| 8a01ce491b | |||
| fd2248daec | |||
| ab23dc3c2b | |||
| 58a82c2b5e | |||
| d0fda1ef0d | |||
| 82c37a28d3 | |||
| b7c8937c4e | |||
| 996f894d07 | |||
| d8ce41a212 | |||
| 712cf097f4 | |||
| 92ae4b4316 | |||
| 31f50d38ee | |||
| eef75c9b46 | |||
| cbbd6cba2b | |||
| 881534987b | |||
| f54c45fbd0 | |||
| 239bb8e458 | |||
| e44040b2aa | |||
| 042ec7a33c | |||
| 215c7bf361 | |||
| d79432b1f5 | |||
| 59fa4e5ecc | |||
| 8a4a96634c | |||
| 170e1148a9 | |||
| b4494cab21 | |||
| a8352d1fef | |||
| 1456660797 | |||
| 872cccb6f4 | |||
| 67915c332e | |||
| 935c45495d | |||
| b883f5b83b | |||
| 7a1b4b76d4 | |||
| affd1a2d63 | |||
| 1798734f17 | |||
| 7aa6f33f34 | |||
| 92d8c50268 | |||
| d338e82ca5 | |||
| bed98253b4 | |||
| 6e64957f7f | |||
| 80b79d7dbb | |||
| f7aa3ea8ed | |||
| 25ca95df8a | |||
| fa52cd42c2 | |||
| 7001d873b9 | |||
| b100e35bc7 | |||
| 3124ec0b3e | |||
| 6911087eab | |||
| 45f224d9dd | |||
| 206fa8d726 | |||
| 1e1cddc58f | |||
| b9773b989d | |||
| 8f8ecb7b94 | |||
| e96ff8e8aa | |||
| 10a2367077 | |||
| 5966bd0c22 | |||
| 64b7e11392 | |||
| ec172fb47a | |||
| 95f8168a0c | |||
| dbea0c04e2 | |||
| fd2dfb80ce | |||
| 821b3069be | |||
| d3377f5cf3 | |||
| dd944cb5a5 | |||
| 8500873387 | |||
| e0d05b4643 | |||
| 80c15d9d51 | |||
| bc7339969f | |||
| d9a31fd78e | |||
| d31c87796f | |||
| c52d9dca66 | |||
| 48dc7eee76 | |||
| edf62e98e3 | |||
| 0837ac87cf | |||
| 71dd40ecb9 | |||
| 69738f06e8 | |||
| 05801ca9d2 | |||
| 42a6a55c9e | |||
| d1b69b7852 | |||
| ccecf6424d | |||
| af1a3857eb | |||
| c431695eee | |||
| 3cc8a6cf01 | |||
| a732d37157 | |||
| dce75a7d6d | |||
| 3253d4cbcc |
@@ -0,0 +1,68 @@
|
|||||||
|
name: arch_package
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [created]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: archlinux
|
||||||
|
options: --privileged
|
||||||
|
volumes:
|
||||||
|
- /sys/fs/cgroup:/sys/fs/cgroup
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Prepare environment
|
||||||
|
run: |
|
||||||
|
pacman -Syu --needed --noconfirm base-devel git openssh
|
||||||
|
sed -i '/E_ROOT/d' /usr/bin/makepkg
|
||||||
|
|
||||||
|
- name: Import AUR key
|
||||||
|
run: |
|
||||||
|
mkdir ~/.ssh && chmod 700 ~/.ssh
|
||||||
|
echo '${{secrets.AUR_SSH_PRIVATE_KEY}}' >> ~/.ssh/id_rsa
|
||||||
|
chmod 600 ~/.ssh/id_rsa
|
||||||
|
ssh-keyscan -H aur.archlinux.org >> /etc/ssh/ssh_known_hosts
|
||||||
|
|
||||||
|
- name: Clone from AUR
|
||||||
|
run: |
|
||||||
|
export GIT_SSH_COMMAND='ssh -i ~/.ssh/id_rsa'
|
||||||
|
git clone ssh://aur@aur.archlinux.org/hyfetch.git
|
||||||
|
|
||||||
|
- name: Upgrade PKGBUILD
|
||||||
|
run: |
|
||||||
|
cd hyfetch
|
||||||
|
sed -i "/^pkgver=/cpkgver=${{github.ref_name}}" PKGBUILD
|
||||||
|
sed -i "/^pkgrel=/cpkgrel=1" PKGBUILD
|
||||||
|
|
||||||
|
- name: Makepkg
|
||||||
|
run: |
|
||||||
|
cd hyfetch
|
||||||
|
yes | makepkg -si
|
||||||
|
|
||||||
|
- name: Test hyfetch
|
||||||
|
run: |
|
||||||
|
hyfetch --test-print
|
||||||
|
|
||||||
|
- name: Upload binaries to release
|
||||||
|
uses: shogo82148/actions-upload-release-asset@v1
|
||||||
|
with:
|
||||||
|
upload_url: ${{ github.event.release.upload_url }}
|
||||||
|
asset_path: hyfetch/hyfetch*.pkg.tar.*
|
||||||
|
|
||||||
|
- name: set git info
|
||||||
|
run: |
|
||||||
|
git config --global user.name "Aleksana BOT"
|
||||||
|
git config --global user.email "me@aleksana.moe"
|
||||||
|
|
||||||
|
- name: Update PKGBUILD to AUR
|
||||||
|
run: |
|
||||||
|
cd hyfetch
|
||||||
|
rm -r .SRCINFO && makepkg --printsrcinfo >.SRCINFO
|
||||||
|
git stage . && git commit -m "BOT: upgrade to ${{github.ref_name}}"
|
||||||
|
export GIT_SSH_COMMAND='ssh -i ~/.ssh/id_rsa'
|
||||||
|
git push
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,115 @@
|
|||||||
|
name: release
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "release/*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
testing:
|
||||||
|
name: testing release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ !startsWith(github.event.head_commit.message,'release') }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Get tags
|
||||||
|
run: git fetch --all --tags
|
||||||
|
|
||||||
|
- name: Get version
|
||||||
|
run: |
|
||||||
|
BRANCH=$(git symbolic-ref --short HEAD)
|
||||||
|
VER=${BRANCH#*release/}
|
||||||
|
if [[ $(git tag | grep ${VER}rc) ]];then
|
||||||
|
TAGS=$(git tag | grep ${VER}rc | awk 'END {print}')
|
||||||
|
REL=${TAGS##*rc}
|
||||||
|
let REL++
|
||||||
|
else
|
||||||
|
REL=1
|
||||||
|
fi
|
||||||
|
echo "BUILDVER=${VER}rc${REL}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Update versions
|
||||||
|
run: |
|
||||||
|
sed -i "/^ *VERSION = /cVERSION = '${{ env.BUILDVER }}'" hyfetch/constants.py
|
||||||
|
|
||||||
|
- name: Making tags
|
||||||
|
run: |
|
||||||
|
git config user.name github-actions
|
||||||
|
git config user.email github-actions@github.com
|
||||||
|
git stage .
|
||||||
|
git commit -m "tagged unstable ${{ env.BUILDVER }}"
|
||||||
|
git tag --force ${{ env.BUILDVER }}
|
||||||
|
|
||||||
|
- name: Upload changes
|
||||||
|
run: |
|
||||||
|
git pull && git push && git push --tags
|
||||||
|
|
||||||
|
- name: Deploy to PYPI
|
||||||
|
uses: casperdcl/deploy-pypi@v2
|
||||||
|
with:
|
||||||
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
||||||
|
pip: wheel -w dist/ --no-deps .
|
||||||
|
|
||||||
|
release:
|
||||||
|
name: formal release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ startsWith(github.event.head_commit.message,'release') }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Get version
|
||||||
|
run: |
|
||||||
|
BRANCH=$(git symbolic-ref --short HEAD)
|
||||||
|
echo "BUILDVER=${BRANCH#*release/}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Update package.json
|
||||||
|
uses: jossef/action-set-json-field@v2
|
||||||
|
with:
|
||||||
|
file: package.json
|
||||||
|
field: version
|
||||||
|
value: ${{ env.BUILDVER }}
|
||||||
|
|
||||||
|
- name: Update neofetch version
|
||||||
|
run: |
|
||||||
|
REVISION=$(expr $(git rev-list --count HEAD neofetch) - 2902)
|
||||||
|
sed -i "/^ *version=/cversion=7.4.0r${REVISION}" neofetch
|
||||||
|
|
||||||
|
- name: Update other versions
|
||||||
|
run: |
|
||||||
|
sed -i "/^ *VERSION = /cVERSION = '${{ env.BUILDVER }}'" hyfetch/constants.py
|
||||||
|
sed -i "/^ *### Unpublished/c### ${{ env.BUILDVER }}" README.md
|
||||||
|
|
||||||
|
- name: Make final tags
|
||||||
|
run: |
|
||||||
|
git config user.name github-actions
|
||||||
|
git config user.email github-actions@github.com
|
||||||
|
git stage . && git commit -m "tagged stable ${{ env.BUILDVER }}"
|
||||||
|
git tag --force ${{ env.BUILDVER }}
|
||||||
|
|
||||||
|
- name: Merge branch and push
|
||||||
|
run: |
|
||||||
|
parent=$(git show-branch \
|
||||||
|
| grep -F '*' \
|
||||||
|
| grep -v "$(git rev-parse --abbrev-ref HEAD)" \
|
||||||
|
| head -n1 \
|
||||||
|
| sed 's/.*\[\(.*\)\].*/\1/' \
|
||||||
|
| sed 's/[\^~].*//')
|
||||||
|
git checkout ${parent}
|
||||||
|
git merge release/${{ env.BUILDVER }} --allow-unrelated-histories
|
||||||
|
git pull --all && git push --all && git push --tags
|
||||||
|
|
||||||
|
- name: Generate changelog from README
|
||||||
|
run: (sed '0,/^ *### ${{ env.BUILDVER }}/d;/^ *#/,$d' <README.md)>temp_CHANGELOG.md
|
||||||
|
|
||||||
|
- name: Publish release
|
||||||
|
uses: ncipollo/release-action@v1
|
||||||
|
with:
|
||||||
|
bodyFile: "temp_CHANGELOG.md"
|
||||||
|
tag: ${{ env.BUILDVER }}
|
||||||
|
token: ${{ secrets.GH_TOKEN }}
|
||||||
@@ -12,6 +12,7 @@ This repo also serves as an updated version of the original `neofetch` since the
|
|||||||
* Method 2: `npx neowofetch`
|
* Method 2: `npx neowofetch`
|
||||||
* Method 3: `bash <(curl -sL neowofetch.hydev.org)`
|
* Method 3: `bash <(curl -sL neowofetch.hydev.org)`
|
||||||
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
### Method 1: Install using Python pip (Recommended)
|
### Method 1: Install using Python pip (Recommended)
|
||||||
@@ -26,9 +27,20 @@ pip install hyfetch
|
|||||||
|
|
||||||
Currently, these distributions have existing packages for HyFetch:
|
Currently, these distributions have existing packages for HyFetch:
|
||||||
|
|
||||||
* ArchLinux: `yay -S hyfetch` (Thanks to @ Aleksana)
|
* ArchLinux: `yay -S hyfetch` (Thanks to [@Aleksana](https://github.com/Aleksanaa))
|
||||||
* Nix: `nix-env -i hyfetch` (Thanks to @ YisuiDenghua)
|
* Nix: `nix-env -i hyfetch` (Thanks to [@YisuiDenghua](https://github.com/YisuiDenghua))
|
||||||
* Guix: `guix install hyfetch` (Thanks to @ WammKD)
|
* Guix: `guix install hyfetch` (Thanks to [@WammKD](https://github.com/WammKD))
|
||||||
|
|
||||||
|
### Method 3: Install the latest developmental version using git
|
||||||
|
|
||||||
|
Install Python >= 3.7 first. Then run the following commands:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git clone https://github.com/hykilpikonna/hyfetch.git
|
||||||
|
cd hyfetch
|
||||||
|
pip install .
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@@ -36,6 +48,9 @@ When you run `hyfetch` for the first time, it will prompt you to choose a color
|
|||||||
|
|
||||||
If you want to use the updated `neofetch` without LGBTQ flags, check out [this section](https://github.com/hykilpikonna/hyfetch#running-updated-original-neofetch)
|
If you want to use the updated `neofetch` without LGBTQ flags, check out [this section](https://github.com/hykilpikonna/hyfetch#running-updated-original-neofetch)
|
||||||
|
|
||||||
|
|
||||||
|
## Questions and answers
|
||||||
|
|
||||||
#### Q: How do I change my config?
|
#### Q: How do I change my config?
|
||||||
|
|
||||||
A: Use `hyfetch -c`
|
A: Use `hyfetch -c`
|
||||||
@@ -48,6 +63,18 @@ Feel free to experiment with it!
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
To make changes to our codebase, you first need to create a fork by clicking the "Fork" button on the top right. Then, you can clone your fork of the source code using `git clone https://github.com/{your username}/hyfetch.git`.
|
||||||
|
|
||||||
|
After making changes to the source code, you can run `python -m hyfetch` in the root directory of your repo to test out your changes.
|
||||||
|
|
||||||
|
If they work correctly, you can commit and push these changes using git command or Github Desktop. Then, you can create a pull request on Github so that it can go into our next release!
|
||||||
|
|
||||||
|
You can also install your version locally by running `pip install .` in the repo root.
|
||||||
|
|
||||||
|
|
||||||
## Change Log
|
## Change Log
|
||||||
|
|
||||||
### About Notation
|
### About Notation
|
||||||
@@ -57,10 +84,47 @@ Updates to `neowofetch` begins with the emoji 🖼️
|
|||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
* [ ] Paginate flags
|
* [ ] Allow left-right arrow keys for pagination
|
||||||
* [ ] Implement light/dark background detection based on https://github.com/muesli/termenv
|
* [ ] Implement light/dark background detection based on https://github.com/muesli/termenv
|
||||||
|
|
||||||
### Unpublished 1.4.0
|
<!-- CHANGELOG STARTS HERE --->
|
||||||
|
|
||||||
|
### 1.4.2
|
||||||
|
|
||||||
|
* 🌈 Detailed runnning/contributing instructions in README.md (#21)
|
||||||
|
* 🖼️ Distro - Add Stock Linux (#23)
|
||||||
|
* 🖼️ Distro - Add DietPi ([dylanaraps#1706](https://github.com/dylanaraps/neofetch/pull/1706))
|
||||||
|
* 🖼️ Distro - Add OmniOS illumos ([dylanaraps#2196](https://github.com/dylanaraps/neofetch/pull/2196))
|
||||||
|
* 🖼️ Distro - Add Droidian ([dylanaraps#2201](https://github.com/dylanaraps/neofetch/pull/2201))
|
||||||
|
* 🖼️ Distro - Add HamoniKR ([dylanaraps#2210](https://github.com/dylanaraps/neofetch/pull/2210))
|
||||||
|
* 🖼️ Song - Add support for TIDAL HiFi (#22)
|
||||||
|
* 🖼️ CPU - Detect multiple CPU models for ARM
|
||||||
|
* 🖼️ Misc - Better defaults: Show RAM in GiB, RAM percentage, CPU speed rounding, refresh rate
|
||||||
|
* 🖼️ Bug Fix - Fix bash 5.2 column cut off issue (#24)
|
||||||
|
|
||||||
|
### 1.4.1
|
||||||
|
|
||||||
|
* 🌈 Paginate flags (#14)
|
||||||
|
* 🌈 Add release workflow (#15)
|
||||||
|
* 🌈 Create automatic release script
|
||||||
|
* 🌈 Config page - Give warning when terminal size is too small
|
||||||
|
* 🌈 Config page - Optimize color arrangement selection on small screens
|
||||||
|
* 🌈 Add experimental Windows support (very unstable at the moment)
|
||||||
|
* 🖼️ Distro - Add ravynOS ([dylanaraps#2182](https://github.com/dylanaraps/neofetch/pull/2182))
|
||||||
|
* 🖼️ Distro - Add ChonkySealOS ([dylanaraps#2180](https://github.com/dylanaraps/neofetch/pull/2180))
|
||||||
|
* 🖼️ Distro - Add GhostBSD ([TheSudoer#18](https://github.com/hykilpikonna/hyfetch/pull/18))
|
||||||
|
* 🖼️ Distro - Add NekOS ([dylanaraps#2186](https://github.com/dylanaraps/neofetch/pull/2186))
|
||||||
|
* 🖼️ Distro - Add astOS ([dylanaraps#2185](https://github.com/dylanaraps/neofetch/pull/2185))
|
||||||
|
* 🖼️ Distro - Fix ChromeOS identification ([dylanaraps#1949](https://github.com/dylanaraps/neofetch/pull/1949))
|
||||||
|
* 🖼️ WM - Add Hyprland to the list of wayland wms ([dylanaraps#2190](https://github.com/dylanaraps/neofetch/pull/2190))
|
||||||
|
* 🖼️ Env - Add Java, Python, Node version detection (can be enabled in config)
|
||||||
|
* 🖼️ Bug Fix - Fix hostname detection when `inetutils` is not installed
|
||||||
|
* 🖼️ Bug Fix - Fix empty brackets displayed when no theme is found ([dylanaraps#1713](https://github.com/dylanaraps/neofetch/pull/1713))
|
||||||
|
* 🖼️ Bug Fix - Fix `$` escape bug in `strip_escape_codes()` ([dylanaraps#1543](https://github.com/dylanaraps/neofetch/pull/1543))
|
||||||
|
* 🖼️ Bug Fix - Fix backslash escape bug in `strip_escape_codes()` ([dylanaraps#1543](https://github.com/dylanaraps/neofetch/pull/1543))
|
||||||
|
* 🖼️ Bug Fix - Fix CPU detection on ARM QEMU
|
||||||
|
|
||||||
|
### 1.4.0
|
||||||
|
|
||||||
* 🌈 Add finsexual flag (#12)
|
* 🌈 Add finsexual flag (#12)
|
||||||
* 🚀 Addressed a total of 128 currently open pull requests from neofetch
|
* 🚀 Addressed a total of 128 currently open pull requests from neofetch
|
||||||
|
|||||||
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from . import main
|
from . import main, constants
|
||||||
|
|
||||||
__version__ = main.VERSION
|
__version__ = constants.VERSION
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
from hyfetch import main
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main.run()
|
||||||
@@ -7,13 +7,8 @@ from pathlib import Path
|
|||||||
from typing_extensions import Literal
|
from typing_extensions import Literal
|
||||||
|
|
||||||
CONFIG_PATH = Path.home() / '.config/hyfetch.json'
|
CONFIG_PATH = Path.home() / '.config/hyfetch.json'
|
||||||
VERSION = '1.4.0'
|
VERSION = '1.4.2'
|
||||||
|
|
||||||
# Obtain terminal size
|
|
||||||
try:
|
|
||||||
TERM_LEN = os.get_terminal_size().columns
|
|
||||||
except Exception:
|
|
||||||
TERM_LEN = 40
|
|
||||||
|
|
||||||
TEST_ASCII = r"""
|
TEST_ASCII = r"""
|
||||||
### |\___/| ###
|
### |\___/| ###
|
||||||
@@ -32,6 +27,7 @@ _/\_\_ _/_/\_
|
|||||||
TEST_ASCII_WIDTH = max(len(line) for line in TEST_ASCII.split('\n'))
|
TEST_ASCII_WIDTH = max(len(line) for line in TEST_ASCII.split('\n'))
|
||||||
DEFAULT_DARK_L = 0.
|
DEFAULT_DARK_L = 0.
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class GlobalConfig:
|
class GlobalConfig:
|
||||||
# Global color mode default to 8-bit for compatibility
|
# Global color mode default to 8-bit for compatibility
|
||||||
@@ -50,3 +46,5 @@ class GlobalConfig:
|
|||||||
|
|
||||||
|
|
||||||
GLOBAL_CFG = GlobalConfig(color_mode='8bit', override_distro=None, debug=False, is_light=False)
|
GLOBAL_CFG = GlobalConfig(color_mode='8bit', override_distro=None, debug=False, is_light=False)
|
||||||
|
|
||||||
|
MINGIT_URL = 'https://github.com/git-for-windows/git/releases/download/v2.37.2.windows.2/MinGit-2.37.2.2-busybox-32-bit.zip'
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import string
|
||||||
|
|
||||||
|
asciis: list['AsciiArt'] = []
|
||||||
|
|
||||||
|
|
||||||
|
class AsciiArt:
|
||||||
|
name: str
|
||||||
|
match: str
|
||||||
|
color: str
|
||||||
|
ascii: str
|
||||||
|
|
||||||
|
def __init__(self, match: str, color: str, ascii: str, name: str | None = None):
|
||||||
|
self.match = match
|
||||||
|
self.color = color
|
||||||
|
self.ascii = ascii
|
||||||
|
self.name = name or self.get_friendly_name()
|
||||||
|
asciis.append(self)
|
||||||
|
|
||||||
|
def get_friendly_name(self) -> str:
|
||||||
|
return self.match.split("|")[0].strip(string.punctuation + '* ') \
|
||||||
|
.replace('"', '').replace('*', '')
|
||||||
|
|
||||||
|
|
||||||
+107
-34
@@ -6,12 +6,14 @@ import json
|
|||||||
import random
|
import random
|
||||||
import re
|
import re
|
||||||
from itertools import permutations
|
from itertools import permutations
|
||||||
|
import traceback
|
||||||
from typing import Iterable
|
from typing import Iterable
|
||||||
|
from math import ceil
|
||||||
|
|
||||||
from .color_util import printc, color, clear_screen
|
from .color_util import printc, color, clear_screen
|
||||||
from .constants import CONFIG_PATH, VERSION, TERM_LEN, TEST_ASCII_WIDTH, TEST_ASCII, GLOBAL_CFG
|
from .constants import *
|
||||||
from .models import Config
|
from .models import Config
|
||||||
from .neofetch_util import run_neofetch, get_distro_ascii, ColorAlignment, ascii_size, get_fore_back
|
from .neofetch_util import *
|
||||||
from .presets import PRESETS
|
from .presets import PRESETS
|
||||||
|
|
||||||
|
|
||||||
@@ -83,21 +85,37 @@ def create_config() -> Config:
|
|||||||
|
|
||||||
:return: Config object (automatically stored)
|
:return: Config object (automatically stored)
|
||||||
"""
|
"""
|
||||||
|
asc = get_distro_ascii()
|
||||||
|
asc_width, asc_lines = ascii_size(asc)
|
||||||
title = 'Welcome to &b&lhy&f&lfetch&r! Let\'s set up some colors first.'
|
title = 'Welcome to &b&lhy&f&lfetch&r! Let\'s set up some colors first.'
|
||||||
clear_screen(title)
|
clear_screen(title)
|
||||||
|
|
||||||
|
##############################
|
||||||
|
# 0. Check term size
|
||||||
|
try:
|
||||||
|
term_len, term_lines = os.get_terminal_size().columns, os.get_terminal_size().lines
|
||||||
|
if term_len < 2 * asc_width + 4 or term_lines < 30:
|
||||||
|
printc(f'&cWarning: Your terminal is too small ({term_len} * {term_lines}). \n'
|
||||||
|
f'Please resize it for better experience.')
|
||||||
|
input('Press any key to ignore...')
|
||||||
|
except:
|
||||||
|
# print('Warning: We cannot detect your terminal size.')
|
||||||
|
pass
|
||||||
|
|
||||||
##############################
|
##############################
|
||||||
# 1. Select color system
|
# 1. Select color system
|
||||||
|
clear_screen(title)
|
||||||
|
term_len, term_lines = term_size()
|
||||||
try:
|
try:
|
||||||
# Demonstrate RGB with a gradient. This requires numpy
|
# Demonstrate RGB with a gradient. This requires numpy
|
||||||
from .color_scale import Scale
|
from .color_scale import Scale
|
||||||
|
|
||||||
scale2 = Scale(['#12c2e9', '#c471ed', '#f7797d'])
|
scale2 = Scale(['#12c2e9', '#c471ed', '#f7797d'])
|
||||||
_8bit = [scale2(i / TERM_LEN).to_ansi_8bit(False) for i in range(TERM_LEN)]
|
_8bit = [scale2(i / term_len).to_ansi_8bit(False) for i in range(term_len)]
|
||||||
_rgb = [scale2(i / TERM_LEN).to_ansi_rgb(False) for i in range(TERM_LEN)]
|
_rgb = [scale2(i / term_len).to_ansi_rgb(False) for i in range(term_len)]
|
||||||
|
|
||||||
printc('&f' + ''.join(c + t for c, t in zip(_8bit, '8bit Color Testing'.center(TERM_LEN))))
|
printc('&f' + ''.join(c + t for c, t in zip(_8bit, '8bit Color Testing'.center(term_len))))
|
||||||
printc('&f' + ''.join(c + t for c, t in zip(_rgb, 'RGB Color Testing'.center(TERM_LEN))))
|
printc('&f' + ''.join(c + t for c, t in zip(_rgb, 'RGB Color Testing'.center(term_len))))
|
||||||
|
|
||||||
print()
|
print()
|
||||||
printc(f'&a1. Which &bcolor system &ado you want to use?')
|
printc(f'&a1. Which &bcolor system &ado you want to use?')
|
||||||
@@ -125,11 +143,6 @@ def create_config() -> Config:
|
|||||||
|
|
||||||
##############################
|
##############################
|
||||||
# 3. Choose preset
|
# 3. Choose preset
|
||||||
clear_screen(title)
|
|
||||||
printc('&a3. Let\'s choose a flag!')
|
|
||||||
printc('Available flag presets:')
|
|
||||||
print()
|
|
||||||
|
|
||||||
# Create flags = [[lines]]
|
# Create flags = [[lines]]
|
||||||
flags = []
|
flags = []
|
||||||
spacing = max(max(len(k) for k in PRESETS.keys()), 20)
|
spacing = max(max(len(k) for k in PRESETS.keys()), 20)
|
||||||
@@ -138,20 +151,55 @@ def create_config() -> Config:
|
|||||||
flags.append([name.center(spacing), flag, flag, flag])
|
flags.append([name.center(spacing), flag, flag, flag])
|
||||||
|
|
||||||
# Calculate flags per row
|
# Calculate flags per row
|
||||||
flags_per_row = TERM_LEN // (spacing + 2)
|
flags_per_row = term_size()[0] // (spacing + 2)
|
||||||
while flags:
|
row_per_page = max(1, (term_size()[1] - 13) // 5)
|
||||||
current = flags[:flags_per_row]
|
num_pages = ceil(len(flags) / (flags_per_row * row_per_page))
|
||||||
flags = flags[flags_per_row:]
|
|
||||||
|
|
||||||
# Print by row
|
# Create pages
|
||||||
|
pages = []
|
||||||
|
for i in range(num_pages):
|
||||||
|
page = []
|
||||||
|
for j in range(row_per_page):
|
||||||
|
page.append(flags[:flags_per_row])
|
||||||
|
flags = flags[flags_per_row:]
|
||||||
|
if not flags:
|
||||||
|
break
|
||||||
|
pages.append(page)
|
||||||
|
|
||||||
|
def print_flag_page(page: list[list[list[str]]], page_num: int):
|
||||||
|
clear_screen(title)
|
||||||
|
printc('&a3. Let\'s choose a flag!')
|
||||||
|
printc('Available flag presets:')
|
||||||
|
print(f'Page: {page_num + 1} of {num_pages}')
|
||||||
|
print()
|
||||||
|
for i in page:
|
||||||
|
print_flag_row(i)
|
||||||
|
print()
|
||||||
|
|
||||||
|
def print_flag_row(current: list[list[str]]):
|
||||||
[printc(' '.join(line)) for line in zip(*current)]
|
[printc(' '.join(line)) for line in zip(*current)]
|
||||||
print()
|
print()
|
||||||
|
|
||||||
print()
|
page = 0
|
||||||
tmp = PRESETS['rainbow'].set_light_dl_def(light_dark).color_text('preset')
|
while True:
|
||||||
preset = literal_input(f'Which {tmp} do you want to use?', PRESETS.keys(), 'rainbow', show_ops=False)
|
print_flag_page(pages[page], page)
|
||||||
_prs = PRESETS[preset]
|
|
||||||
title += f'\n&e3. Selected flag: &r{_prs.color_text(preset)}'
|
tmp = PRESETS['rainbow'].set_light_dl_def(light_dark).color_text('preset')
|
||||||
|
opts = list(PRESETS.keys())
|
||||||
|
if page < num_pages - 1:
|
||||||
|
opts.append('next')
|
||||||
|
if page > 0:
|
||||||
|
opts.append('prev')
|
||||||
|
print("Enter 'next' to go to the next page and 'prev' to go to the previous page.")
|
||||||
|
preset = literal_input(f'Which {tmp} do you want to use? ', opts, 'rainbow', show_ops=False)
|
||||||
|
if preset == 'next':
|
||||||
|
page += 1
|
||||||
|
elif preset == 'prev':
|
||||||
|
page -= 1
|
||||||
|
else:
|
||||||
|
_prs = PRESETS[preset]
|
||||||
|
title += f'\n&e3. Selected flag: &r{_prs.color_text(preset)}'
|
||||||
|
break
|
||||||
|
|
||||||
#############################
|
#############################
|
||||||
# 4. Dim/lighten colors
|
# 4. Dim/lighten colors
|
||||||
@@ -161,7 +209,7 @@ def create_config() -> Config:
|
|||||||
print()
|
print()
|
||||||
|
|
||||||
# Print cats
|
# Print cats
|
||||||
num_cols = TERM_LEN // (TEST_ASCII_WIDTH + 2)
|
num_cols = term_size()[0] // (TEST_ASCII_WIDTH + 2)
|
||||||
ratios = [col / (num_cols - 1) for col in range(num_cols)]
|
ratios = [col / (num_cols - 1) for col in range(num_cols)]
|
||||||
ratios = [(r * 0.4 + 0.1) if is_light else (r * 0.4 + 0.5) for r in ratios]
|
ratios = [(r * 0.4 + 0.1) if is_light else (r * 0.4 + 0.5) for r in ratios]
|
||||||
lines = [ColorAlignment('horizontal').recolor_ascii(TEST_ASCII.replace(
|
lines = [ColorAlignment('horizontal').recolor_ascii(TEST_ASCII.replace(
|
||||||
@@ -193,25 +241,31 @@ def create_config() -> Config:
|
|||||||
#############################
|
#############################
|
||||||
# 5. Color arrangement
|
# 5. Color arrangement
|
||||||
color_alignment = None
|
color_alignment = None
|
||||||
|
fore_back = get_fore_back()
|
||||||
|
|
||||||
|
# Calculate amount of row/column that can be displayed on screen
|
||||||
|
ascii_per_row = term_size()[0] // (asc_width + 2)
|
||||||
|
ascii_rows = max(1, (term_size()[1] - 8) // asc_lines)
|
||||||
|
|
||||||
|
# Displays horizontal and vertical arrangements in the first iteration, but hide them in
|
||||||
|
# later iterations
|
||||||
|
hv_arrangements = [
|
||||||
|
('Horizontal', ColorAlignment('horizontal', fore_back=fore_back)),
|
||||||
|
('Vertical', ColorAlignment('vertical'))
|
||||||
|
]
|
||||||
|
arrangements = hv_arrangements.copy()
|
||||||
|
|
||||||
|
# Loop for random rolling
|
||||||
while True:
|
while True:
|
||||||
clear_screen(title)
|
clear_screen(title)
|
||||||
|
|
||||||
asc = get_distro_ascii()
|
|
||||||
asc_width = ascii_size(asc)[0]
|
|
||||||
fore_back = get_fore_back()
|
|
||||||
arrangements = [
|
|
||||||
('Horizontal', ColorAlignment('horizontal', fore_back=fore_back)),
|
|
||||||
('Vertical', ColorAlignment('vertical'))
|
|
||||||
]
|
|
||||||
ascii_per_row = TERM_LEN // (asc_width + 2)
|
|
||||||
|
|
||||||
# Random color schemes
|
# Random color schemes
|
||||||
pis = list(range(len(_prs.unique_colors().colors)))
|
pis = list(range(len(_prs.unique_colors().colors)))
|
||||||
slots = len(set(re.findall('(?<=\\${c)[0-9](?=})', asc)))
|
slots = len(set(re.findall('(?<=\\${c)[0-9](?=})', asc)))
|
||||||
while len(pis) < slots:
|
while len(pis) < slots:
|
||||||
pis += pis
|
pis += pis
|
||||||
perm = {p[:slots] for p in permutations(pis)}
|
perm = {p[:slots] for p in permutations(pis)}
|
||||||
random_count = ascii_per_row * 2 - 2
|
random_count = ascii_per_row * ascii_rows - len(arrangements)
|
||||||
if random_count > len(perm):
|
if random_count > len(perm):
|
||||||
choices = perm
|
choices = perm
|
||||||
else:
|
else:
|
||||||
@@ -235,10 +289,11 @@ def create_config() -> Config:
|
|||||||
choice = literal_input(f'Your choice?', ['horizontal', 'vertical', 'roll'] + [f'random{i}' for i in range(random_count)], 'horizontal')
|
choice = literal_input(f'Your choice?', ['horizontal', 'vertical', 'roll'] + [f'random{i}' for i in range(random_count)], 'horizontal')
|
||||||
|
|
||||||
if choice == 'roll':
|
if choice == 'roll':
|
||||||
|
arrangements = []
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Save choice
|
# Save choice
|
||||||
arrangement_index = {k.lower(): ca for k, ca in arrangements}
|
arrangement_index = {k.lower(): ca for k, ca in hv_arrangements + arrangements}
|
||||||
if choice in arrangement_index:
|
if choice in arrangement_index:
|
||||||
color_alignment = arrangement_index[choice]
|
color_alignment = arrangement_index[choice]
|
||||||
else:
|
else:
|
||||||
@@ -263,6 +318,12 @@ def create_config() -> Config:
|
|||||||
|
|
||||||
|
|
||||||
def run():
|
def run():
|
||||||
|
# Optional: Import readline
|
||||||
|
try:
|
||||||
|
import readline
|
||||||
|
except ModuleNotFoundError:
|
||||||
|
pass
|
||||||
|
|
||||||
# Create CLI
|
# Create CLI
|
||||||
hyfetch = color('&b&lhyfetch&r')
|
hyfetch = color('&b&lhyfetch&r')
|
||||||
parser = argparse.ArgumentParser(description=color(f'{hyfetch} - neofetch with flags <3'))
|
parser = argparse.ArgumentParser(description=color(f'{hyfetch} - neofetch with flags <3'))
|
||||||
@@ -276,6 +337,7 @@ def run():
|
|||||||
parser.add_argument('--debug', action='store_true', help=f'Debug mode')
|
parser.add_argument('--debug', action='store_true', help=f'Debug mode')
|
||||||
parser.add_argument('--test-distro', help=f'Test for a specific distro')
|
parser.add_argument('--test-distro', help=f'Test for a specific distro')
|
||||||
parser.add_argument('--test-print', action='store_true', help=f'Test print distro ascii art only')
|
parser.add_argument('--test-print', action='store_true', help=f'Test print distro ascii art only')
|
||||||
|
parser.add_argument('--ask-exit', action='store_true', help=f'Ask before exitting')
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
@@ -283,6 +345,10 @@ def run():
|
|||||||
print(f'Version is {VERSION}')
|
print(f'Version is {VERSION}')
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# Ensure git bash for windows
|
||||||
|
ensure_git_bash()
|
||||||
|
check_windows_cmd()
|
||||||
|
|
||||||
# Test distro ascii art
|
# Test distro ascii art
|
||||||
if args.test_distro:
|
if args.test_distro:
|
||||||
print(f'Setting distro to {args.test_distro}')
|
print(f'Setting distro to {args.test_distro}')
|
||||||
@@ -324,4 +390,11 @@ def run():
|
|||||||
preset = preset.set_light_dl(config.lightness)
|
preset = preset.set_light_dl(config.lightness)
|
||||||
|
|
||||||
# Run
|
# Run
|
||||||
run_neofetch(preset, config.color_align)
|
try:
|
||||||
|
run_neofetch(preset, config.color_align)
|
||||||
|
except Exception as e:
|
||||||
|
print(f'Error: {e}')
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
if args.ask_exit:
|
||||||
|
input('Press any key to exit...')
|
||||||
|
|||||||
+104
-16
@@ -4,23 +4,38 @@ import inspect
|
|||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import re
|
import re
|
||||||
|
import shlex
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import sys
|
||||||
|
import zipfile
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from subprocess import check_output
|
from subprocess import check_output
|
||||||
from tempfile import TemporaryDirectory
|
from tempfile import TemporaryDirectory
|
||||||
|
from urllib.request import urlretrieve
|
||||||
|
|
||||||
import pkg_resources
|
import pkg_resources
|
||||||
from typing_extensions import Literal
|
from typing_extensions import Literal
|
||||||
|
|
||||||
from hyfetch.color_util import color
|
from hyfetch.color_util import color
|
||||||
from .constants import GLOBAL_CFG
|
from .constants import GLOBAL_CFG, MINGIT_URL
|
||||||
from .presets import ColorProfile
|
from .presets import ColorProfile
|
||||||
from .serializer import from_dict
|
from .serializer import from_dict
|
||||||
|
|
||||||
RE_NEOFETCH_COLOR = re.compile('\\${c[0-9]}')
|
RE_NEOFETCH_COLOR = re.compile('\\${c[0-9]}')
|
||||||
|
|
||||||
|
|
||||||
|
def term_size() -> tuple[int, int]:
|
||||||
|
"""
|
||||||
|
Get terminal size
|
||||||
|
:return:
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
return os.get_terminal_size().columns, os.get_terminal_size().lines
|
||||||
|
except Exception:
|
||||||
|
return 100, 20
|
||||||
|
|
||||||
|
|
||||||
def ascii_size(asc: str) -> tuple[int, int]:
|
def ascii_size(asc: str) -> tuple[int, int]:
|
||||||
"""
|
"""
|
||||||
Get distro ascii width, height ignoring color code
|
Get distro ascii width, height ignoring color code
|
||||||
@@ -127,7 +142,83 @@ def get_command_path() -> str:
|
|||||||
|
|
||||||
:return: Command path
|
:return: Command path
|
||||||
"""
|
"""
|
||||||
return pkg_resources.resource_filename(__name__, 'scripts/neowofetch')
|
cmd_path = pkg_resources.resource_filename(__name__, 'scripts/neowofetch')
|
||||||
|
|
||||||
|
# Windows doesn't support symbolic links, but also I can't detect symbolic links... hard-code it here for now.
|
||||||
|
if platform.system() == 'Windows':
|
||||||
|
return str(Path(cmd_path).parent.parent.parent / 'neofetch')
|
||||||
|
|
||||||
|
return cmd_path
|
||||||
|
|
||||||
|
|
||||||
|
def ensure_git_bash() -> Path:
|
||||||
|
"""
|
||||||
|
Ensure git bash installation for windows
|
||||||
|
|
||||||
|
:returns git bash path
|
||||||
|
"""
|
||||||
|
if platform.system() == 'Windows':
|
||||||
|
# Find installation in default path
|
||||||
|
def_path = Path(r'C:\Program Files\Git\bin\bash.exe')
|
||||||
|
if def_path.is_file():
|
||||||
|
return def_path
|
||||||
|
|
||||||
|
# Find installation in PATH (C:\Program Files\Git\cmd should be in path)
|
||||||
|
pth = (os.environ.get('PATH') or '').lower().split(';')
|
||||||
|
pth = [p for p in pth if p.endswith(r'\git\cmd')]
|
||||||
|
if pth:
|
||||||
|
return Path(pth[0]).parent / r'bin\bash.exe'
|
||||||
|
|
||||||
|
# Previously downloaded portable installation
|
||||||
|
path = Path(__file__).parent / 'min_git'
|
||||||
|
pkg_path = path / 'package.zip'
|
||||||
|
if path.is_dir():
|
||||||
|
return path / r'bin\bash.exe'
|
||||||
|
|
||||||
|
# No installation found, download a portable installation
|
||||||
|
print('Git installation not found. Git is required to use HyFetch/neofetch on Windows')
|
||||||
|
print('Downloading a minimal portable package for Git...')
|
||||||
|
urlretrieve(MINGIT_URL, pkg_path)
|
||||||
|
print('Download finished! Extracting...')
|
||||||
|
with zipfile.ZipFile(pkg_path, 'r') as zip_ref:
|
||||||
|
zip_ref.extractall(path)
|
||||||
|
print('Done!')
|
||||||
|
return path / r'bin\bash.exe'
|
||||||
|
|
||||||
|
|
||||||
|
def check_windows_cmd():
|
||||||
|
"""
|
||||||
|
Check if this script is running under cmd.exe. If so, launch an external window with git bash
|
||||||
|
since cmd doesn't support RGB colors.
|
||||||
|
"""
|
||||||
|
if platform.system() == 'Windows':
|
||||||
|
import psutil
|
||||||
|
# TODO: This line does not correctly identify cmd prompts...
|
||||||
|
if psutil.Process(os.getppid()).name().lower().strip() == 'cmd.exe':
|
||||||
|
print("cmd.exe doesn't support RGB colors, restarting in MinTTY...")
|
||||||
|
cmd = f'"{ensure_git_bash().parent.parent / "usr/bin/mintty.exe"}" -s 110,40 -e python -m hyfetch --ask-exit'
|
||||||
|
os.system(cmd)
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
|
def run_command(args: str, pipe: bool = False) -> str | None:
|
||||||
|
"""
|
||||||
|
Run neofetch command
|
||||||
|
"""
|
||||||
|
if platform.system() != 'Windows':
|
||||||
|
full_cmd = shlex.split(f'{get_command_path()} {args}')
|
||||||
|
|
||||||
|
else:
|
||||||
|
cmd = get_command_path().replace("\\", "/").replace("C:/", "/c/")
|
||||||
|
args = args.replace('\\', '/').replace('C:/', '/c/')
|
||||||
|
|
||||||
|
full_cmd = [ensure_git_bash(), '-c', f'{cmd} {args}']
|
||||||
|
# print(full_cmd)
|
||||||
|
|
||||||
|
if pipe:
|
||||||
|
return check_output(full_cmd).decode().strip()
|
||||||
|
else:
|
||||||
|
subprocess.run(full_cmd)
|
||||||
|
|
||||||
|
|
||||||
def get_distro_ascii(distro: str | None = None) -> str:
|
def get_distro_ascii(distro: str | None = None) -> str:
|
||||||
@@ -147,11 +238,16 @@ def get_distro_ascii(distro: str | None = None) -> str:
|
|||||||
os.environ['CUSTOM_DISTRO'] = distro
|
os.environ['CUSTOM_DISTRO'] = distro
|
||||||
cmd = 'print_custom_ascii'
|
cmd = 'print_custom_ascii'
|
||||||
|
|
||||||
return normalize_ascii(check_output([get_command_path(), cmd]).decode().strip())
|
asc = run_command(cmd, True)
|
||||||
|
|
||||||
|
# Unescape backslashes here because backslashes are escaped in neofetch for printf
|
||||||
|
asc = asc.replace('\\\\', '\\')
|
||||||
|
|
||||||
|
return normalize_ascii(asc)
|
||||||
|
|
||||||
|
|
||||||
def get_distro_name():
|
def get_distro_name():
|
||||||
return check_output([get_command_path(), 'ascii_distro_name']).decode().strip()
|
return run_command('ascii_distro_name', True)
|
||||||
|
|
||||||
|
|
||||||
def run_neofetch(preset: ColorProfile, alignment: ColorAlignment):
|
def run_neofetch(preset: ColorProfile, alignment: ColorAlignment):
|
||||||
@@ -165,6 +261,9 @@ def run_neofetch(preset: ColorProfile, alignment: ColorAlignment):
|
|||||||
w, h = ascii_size(asc)
|
w, h = ascii_size(asc)
|
||||||
asc = alignment.recolor_ascii(asc, preset)
|
asc = alignment.recolor_ascii(asc, preset)
|
||||||
|
|
||||||
|
# Escape backslashes here because backslashes are escaped in neofetch for printf
|
||||||
|
asc = asc.replace('\\', '\\\\')
|
||||||
|
|
||||||
# Write temp file
|
# Write temp file
|
||||||
with TemporaryDirectory() as tmp_dir:
|
with TemporaryDirectory() as tmp_dir:
|
||||||
tmp_dir = Path(tmp_dir)
|
tmp_dir = Path(tmp_dir)
|
||||||
@@ -175,18 +274,7 @@ def run_neofetch(preset: ColorProfile, alignment: ColorAlignment):
|
|||||||
os.environ['ascii_len'] = str(w)
|
os.environ['ascii_len'] = str(w)
|
||||||
os.environ['ascii_lines'] = str(h)
|
os.environ['ascii_lines'] = str(h)
|
||||||
|
|
||||||
if platform.system() != 'Windows':
|
run_command(f'--ascii --source {path.absolute()} --ascii-colors')
|
||||||
os.system(f'{get_command_path()} --ascii --source {path.absolute()} --ascii-colors')
|
|
||||||
|
|
||||||
else:
|
|
||||||
cmd = get_command_path().replace("\\", "/").replace("C:/", "/c/")
|
|
||||||
path_str = str(path.absolute()).replace('\\', '/').replace('C:/', '/c/')
|
|
||||||
|
|
||||||
cmd = f'ascii_len={w} ascii_lines={h} {cmd} --ascii --source {path_str} --ascii-colors'
|
|
||||||
full_cmd = ['C:\\Program Files\\Git\\bin\\bash.exe', '-c', cmd]
|
|
||||||
# print(full_cmd)
|
|
||||||
|
|
||||||
subprocess.run(full_cmd)
|
|
||||||
|
|
||||||
|
|
||||||
def get_fore_back(distro: str | None = None) -> tuple[int, int] | None:
|
def get_fore_back(distro: str | None = None) -> tuple[int, int] | None:
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
# SOFTWARE.
|
# SOFTWARE.
|
||||||
|
|
||||||
version=7.3.0
|
version=7.3.2
|
||||||
|
|
||||||
# Fallback to a value of '5' for shells which support bash
|
# Fallback to a value of '5' for shells which support bash
|
||||||
# but do not set the 'BASH_' shell variables (osh).
|
# but do not set the 'BASH_' shell variables (osh).
|
||||||
@@ -88,6 +88,10 @@ print_info() {
|
|||||||
# info "Users" users
|
# info "Users" users
|
||||||
# info "Locale" locale # This only works on glibc systems.
|
# info "Locale" locale # This only works on glibc systems.
|
||||||
|
|
||||||
|
# info "Java" java_ver
|
||||||
|
# info "Python" python_ver
|
||||||
|
# info "Node" node_ver
|
||||||
|
|
||||||
info cols
|
info cols
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -170,7 +174,7 @@ uptime_shorthand="on"
|
|||||||
# Example:
|
# Example:
|
||||||
# on: '1801MiB / 7881MiB (22%)'
|
# on: '1801MiB / 7881MiB (22%)'
|
||||||
# off: '1801MiB / 7881MiB'
|
# off: '1801MiB / 7881MiB'
|
||||||
memory_percent="off"
|
memory_percent="on"
|
||||||
|
|
||||||
# Change memory output unit.
|
# Change memory output unit.
|
||||||
#
|
#
|
||||||
@@ -182,7 +186,7 @@ memory_percent="off"
|
|||||||
# kib '1020928KiB / 7117824KiB'
|
# kib '1020928KiB / 7117824KiB'
|
||||||
# mib '1042MiB / 6951MiB'
|
# mib '1042MiB / 6951MiB'
|
||||||
# gib: ' 0.98GiB / 6.79GiB'
|
# gib: ' 0.98GiB / 6.79GiB'
|
||||||
memory_unit="mib"
|
memory_unit="gib"
|
||||||
|
|
||||||
|
|
||||||
# Packages
|
# Packages
|
||||||
@@ -249,7 +253,7 @@ speed_type="bios_limit"
|
|||||||
# Example:
|
# Example:
|
||||||
# on: 'i7-6500U (4) @ 3.1GHz'
|
# on: 'i7-6500U (4) @ 3.1GHz'
|
||||||
# off: 'i7-6500U (4) @ 3.100GHz'
|
# off: 'i7-6500U (4) @ 3.100GHz'
|
||||||
speed_shorthand="off"
|
speed_shorthand="on"
|
||||||
|
|
||||||
# Enable/Disable CPU brand in output.
|
# Enable/Disable CPU brand in output.
|
||||||
#
|
#
|
||||||
@@ -352,7 +356,7 @@ gpu_type="all"
|
|||||||
# Example:
|
# Example:
|
||||||
# on: '1920x1080 @ 60Hz'
|
# on: '1920x1080 @ 60Hz'
|
||||||
# off: '1920x1080'
|
# off: '1920x1080'
|
||||||
refresh_rate="off"
|
refresh_rate="on"
|
||||||
|
|
||||||
|
|
||||||
# Gtk Theme / Icons / Font
|
# Gtk Theme / Icons / Font
|
||||||
@@ -795,32 +799,33 @@ image_source="auto"
|
|||||||
# Flag: --ascii_distro
|
# Flag: --ascii_distro
|
||||||
#
|
#
|
||||||
# NOTE: AIX, AlmaLinux, Alpine, Alter, Amazon, AmogOS, Anarchy, Android, Antergos, antiX, AOSC OS,
|
# NOTE: AIX, AlmaLinux, Alpine, Alter, Amazon, AmogOS, Anarchy, Android, Antergos, antiX, AOSC OS,
|
||||||
# AOSC OS/Retro, Aperio GNU/Linux, Apricity, Arch, ArchBox, Archcraft, ARCHlabs, ArchMerge,
|
# AOSC OS/Retro, Aperio GNU/Linux, Apricity, Arch, ArchBox, Archcraft, ARCHlabs, ArchStrike,
|
||||||
# ArchStrike, ArcoLinux, Artix, Arya, Asahi, AsteroidOS, Bedrock, BigLinux, Bitrig, BlackArch,
|
# ArcoLinux, Artix, Arya, Asahi, AsteroidOS, astOS, Bedrock, BigLinux, Bitrig, BlackArch,
|
||||||
# blackPanther, BLAG, BlankOn, BlueLight, Bodhi, bonsai, BSD, BunsenLabs, Cachy OS, Calculate,
|
# blackPanther, BLAG, BlankOn, BlueLight, Bodhi, bonsai, BSD, BunsenLabs, Cachy OS, Calculate,
|
||||||
# CalinixOS, Carbs, CBL-Mariner, CelOS, Center, CentOS, Chakra, ChaletOS, Chapeau, Chrom, Cleanjaro,
|
# CalinixOS, Carbs, CBL-Mariner, CelOS, Center, CentOS, Chakra, ChaletOS, Chapeau, ChonkySealOS,
|
||||||
# Clear Linux OS, ClearOS, Clover, Condres, Container Linux by CoreOS, CRUX, Crystal Linux,
|
# Chrom, Cleanjaro, Clear Linux OS, ClearOS, Clover, Condres, Container Linux by CoreOS, CRUX,
|
||||||
# Cucumber, CutefishOS, CyberOS, dahlia, DarkOs, Darwin, Debian, Deepin, DesaOS, Devuan, DracOS,
|
# Crystal Linux, Cucumber, CutefishOS, CyberOS, dahlia, DarkOs, Darwin, Debian, Deepin, DesaOS,
|
||||||
# DragonFly, Drauger, Elementary, Elive, EncryptOS, EndeavourOS, Endless, EuroLinux, Exherbo, Exodia
|
# Devuan, DietPi, DracOS, DragonFly, Drauger, Droidian, Elementary, Elive, EncryptOS, EndeavourOS,
|
||||||
# Predator OS, Fedora, Feren, Finnix, FreeBSD, FreeMiNT, Frugalware, Funtoo, GalliumOS, Garuda,
|
# Endless, EuroLinux, Exherbo, Exodia Predator OS, Fedora, Feren, Finnix, FreeBSD, FreeMiNT,
|
||||||
# Gentoo, glaucus, gNewSense, GNOME, GNU, GoboLinux, GrapheneOS, Grombyang, Guix, Haiku, HarDClanZ,
|
# Frugalware, Funtoo, GalliumOS, Garuda, Gentoo, GhostBSD, glaucus, gNewSense, GNOME, GNU,
|
||||||
# Hash, Huayra, HydroOS, Hyperbola, iglunix, instantOS, IRIX, Itc, januslinux, Kaisen, Kali, KaOS,
|
# GoboLinux, GrapheneOS, Grombyang, Guix, Haiku, HamoniKR, HarDClanZ, Hash, Huayra, HydroOS,
|
||||||
# KDE, Kibojoe, Kogaion, Korora, KrassOS, KSLinux, Kubuntu, LangitKetujuh, LaxerOS, LEDE, LibreELEC,
|
# Hyperbola, iglunix, instantOS, IRIX, Itc, januslinux, Kaisen, Kali, KaOS, KDE, Kibojoe, Kogaion,
|
||||||
# Linspire, Linux, Linux Lite, Linux Mint, Linux Mint Old, Live Raizo, LMDE, Lubuntu, Lunar, mac,
|
# Korora, KrassOS, KSLinux, Kubuntu, LangitKetujuh, LaxerOS, LEDE, LibreELEC, Linspire, Linux, Linux
|
||||||
# Mageia, MagpieOS, Mandriva, Manjaro, MassOS, MatuusOS, Maui, Mer, Minix, MIRACLE LINUX, MX, Namib,
|
# Lite, Linux Mint, Linux Mint Old, Live Raizo, LMDE, Lubuntu, Lunar, mac, Mageia, MagpieOS,
|
||||||
# Neptune, NetBSD, Netrunner, Nitrux, NixOS, NomadBSD, Nurunner, NuTyX, Obarun, OBRevenge, Open
|
# Mandriva, Manjaro, MassOS, MatuusOS, Maui, Mer, Minix, MIRACLE LINUX, MX, Namib, Neptune, NetBSD,
|
||||||
# Source Media Center, OpenBSD, openEuler, OpenIndiana, openmamba, OpenMandriva, OpenStage,
|
# Netrunner, Nitrux, NixOS, NomadBSD, Nurunner, NuTyX, Obarun, OBRevenge, OmniOS, Open Source Media
|
||||||
# openSUSE, openSUSE Leap, openSUSE Tumbleweed, OpenWrt, OPNsense, Oracle, orchid, OS Elbrus,
|
# Center, OpenBSD, openEuler, OpenIndiana, openmamba, OpenMandriva, OpenStage, openSUSE, openSUSE
|
||||||
# PacBSD, Parabola, parch, Pardus, Parrot, Parsix, PCBSD, PCLinuxOS, pearOS, Pengwin, Pentoo,
|
# Leap, openSUSE Tumbleweed, OpenWrt, OPNsense, Oracle, orchid, OS Elbrus, PacBSD, Parabola, parch,
|
||||||
# Peppermint, Pisi, PNM Linux, Pop!_OS, Porteus, PostMarketOS, Profelis SambaBOX, Proxmox, PuffOS,
|
# Pardus, Parrot, Parsix, PCBSD, PCLinuxOS, pearOS, Pengwin, Pentoo, Peppermint, Pisi, PNM Linux,
|
||||||
# Puppy, PureOS, Q4OS, Qubes, Qubyt, Quibian, Radix, Raspbian, Reborn OS, Red Star, Redcore, Redhat,
|
# Pop!_OS, Porteus, PostMarketOS, Profelis SambaBOX, Proxmox, PuffOS, Puppy, PureOS, Q4OS, Qubes,
|
||||||
# Refracted Devuan, Regata, Regolith, rocky, Rosa, Sabayon, sabotage, Sailfish, SalentOS,
|
# Qubyt, Quibian, Radix, Raspbian, ravynOS, Reborn OS, Red Star, Redcore, Redhat, Refracted Devuan,
|
||||||
# Scientific, semc, Septor, Serene, SharkLinux, ShastraOS, Siduction, SkiffOS, Slackware, SliTaz,
|
# Regata, Regolith, rocky, Rosa, Sabayon, sabotage, Sailfish, SalentOS, Scientific, semc, Septor,
|
||||||
# SmartOS, Soda, Solus, Source Mage, Sparky, Star, SteamOS, Sulin, SunOS, SwagArch, t2, Tails,
|
# Serene, SharkLinux, ShastraOS, Siduction, SkiffOS, Slackware, SliTaz, SmartOS, Soda, Solus, Source
|
||||||
# TeArch, TorizonCore, Trisquel, Twister, Ubuntu, Ubuntu Budgie, Ubuntu Cinnamon, Ubuntu Kylin,
|
# Mage, Sparky, Star, SteamOS, Stock Linux, Sulin, SunOS, SwagArch, t2, Tails, TeArch, TorizonCore,
|
||||||
# Ubuntu MATE, Ubuntu Studio, Ubuntu Sway, Ubuntu Touch, Ubuntu-GNOME, ubuntu_old02, Ultramarine
|
# Trisquel, Twister, Ubuntu, Ubuntu Budgie, Ubuntu Cinnamon, Ubuntu Kylin, Ubuntu MATE, Ubuntu
|
||||||
# Linux, Univalent, Univention, Uos, uwuntu, Venom, VNux, Void, VzLinux, wii-linux-ngx, Windows,
|
# Studio, Ubuntu Sway, Ubuntu Touch, Ubuntu-GNOME, ubuntu_old02, Ultramarine Linux, Univalent,
|
||||||
# Windows 10, Windows 11, XFerience, Xubuntu, yiffOS, Zorin have ascii logos.
|
# Univention, Uos, uwuntu, Venom, VNux, Void, VzLinux, wii-linux-ngx, Windows, Windows 10, Windows
|
||||||
|
# 11, XFerience, Xubuntu, yiffOS, Zorin have ascii logos.
|
||||||
|
|
||||||
# NOTE: arch, dragonfly, Fedora, LangitKetujuh, nixos, redhat, Ubuntu have 'old' logo variants, use
|
# NOTE: arch, dragonfly, Fedora, LangitKetujuh, nixos, redhat, Ubuntu have 'old' logo variants, use
|
||||||
# {distro}_old to use them.
|
# {distro}_old to use them.
|
||||||
@@ -949,7 +954,10 @@ get_os() {
|
|||||||
# just the output of "uname -s".
|
# just the output of "uname -s".
|
||||||
case $kernel_name in
|
case $kernel_name in
|
||||||
Darwin) os=$darwin_name ;;
|
Darwin) os=$darwin_name ;;
|
||||||
SunOS) os=Solaris ;;
|
SunOS) case $(uname -o 2>/dev/null) in
|
||||||
|
illumos) os=illumos ;;
|
||||||
|
*) os=Solaris ;;
|
||||||
|
esac ;;
|
||||||
Haiku) os=Haiku ;;
|
Haiku) os=Haiku ;;
|
||||||
MINIX) os=MINIX ;;
|
MINIX) os=MINIX ;;
|
||||||
AIX) os=AIX ;;
|
AIX) os=AIX ;;
|
||||||
@@ -977,6 +985,7 @@ get_os() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get_distro() {
|
get_distro() {
|
||||||
|
|
||||||
[[ $distro ]] && return
|
[[ $distro ]] && return
|
||||||
|
|
||||||
case $os in
|
case $os in
|
||||||
@@ -987,6 +996,14 @@ get_distro() {
|
|||||||
*) distro=$(< /bedrock/etc/bedrock-release)
|
*) distro=$(< /bedrock/etc/bedrock-release)
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
elif [[ -f /System/Library/CoreServices/SystemVersion.plist ]]; then
|
||||||
|
os=ravynOS
|
||||||
|
ascii_distro="ravynOS"
|
||||||
|
case $distro_shorthand in
|
||||||
|
tiny) distro="$darwin_name" ;;
|
||||||
|
on) distro="$darwin_name $osx_version" ;;
|
||||||
|
*) distro="$darwin_name $darwin_family $osx_version"
|
||||||
|
esac
|
||||||
elif [[ -f /etc/redstar-release ]]; then
|
elif [[ -f /etc/redstar-release ]]; then
|
||||||
case $distro_shorthand in
|
case $distro_shorthand in
|
||||||
on|tiny) distro="Red Star OS" ;;
|
on|tiny) distro="Red Star OS" ;;
|
||||||
@@ -1131,13 +1148,7 @@ get_distro() {
|
|||||||
elif [[ -d /system/app/ && -d /system/priv-app ]]; then
|
elif [[ -d /system/app/ && -d /system/priv-app ]]; then
|
||||||
distro="Android $(getprop ro.build.version.release)"
|
distro="Android $(getprop ro.build.version.release)"
|
||||||
|
|
||||||
# Chrome OS doesn't conform to the /etc/*-release standard.
|
elif [[ -f /etc/vzlinux-release ]]; then
|
||||||
# While the file is a series of variables they can't be sourced
|
|
||||||
# by the shell since the values aren't quoted.
|
|
||||||
elif [[ -f /etc/lsb-release && $(< /etc/lsb-release) == *CHROMEOS* ]]; then
|
|
||||||
distro='Chrome OS'
|
|
||||||
|
|
||||||
elif [[ -f /etc/vzlinux-release ]]; then
|
|
||||||
distro='VzLinux'
|
distro='VzLinux'
|
||||||
|
|
||||||
elif type -p guix >/dev/null; then
|
elif type -p guix >/dev/null; then
|
||||||
@@ -1200,14 +1211,19 @@ get_distro() {
|
|||||||
*) distro+=" on Windows $windows_version" ;;
|
*) distro+=" on Windows $windows_version" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# Chrome OS doesn't conform to the /etc/*-release standard.
|
||||||
|
# While the file is a series of variables they can't be sourced
|
||||||
|
# by the shell since the values aren't quoted.
|
||||||
|
elif [[ -f /etc/lsb-release && $(< /etc/lsb-release) == *CHROMEOS* ]]; then
|
||||||
|
distro='Chrome OS'
|
||||||
|
|
||||||
elif [[ $(< /proc/version) == *chrome-bot* || -f /dev/cros_ec ]]; then
|
elif [[ $(< /proc/version) == *chrome-bot* || -f /dev/cros_ec ]]; then
|
||||||
[[ $distro != *Chrome* ]] &&
|
[[ $distro != *Chrome* ]] &&
|
||||||
case $distro_shorthand in
|
case $distro_shorthand in
|
||||||
on) distro+=" [Chrome OS]" ;;
|
on) distro="Chrome OS $distro" ;;
|
||||||
tiny) distro="Chrome OS" ;;
|
tiny) distro="Chrome OS" ;;
|
||||||
*) distro+=" on Chrome OS" ;;
|
*) distro="Chrome OS $distro" ;;
|
||||||
esac
|
esac
|
||||||
distro=${distro## on }
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
distro=$(trim_quotes "$distro")
|
distro=$(trim_quotes "$distro")
|
||||||
@@ -1288,7 +1304,7 @@ get_distro() {
|
|||||||
distro=${distro/Microsoft }
|
distro=${distro/Microsoft }
|
||||||
;;
|
;;
|
||||||
|
|
||||||
Solaris)
|
Solaris|illumos)
|
||||||
case $distro_shorthand in
|
case $distro_shorthand in
|
||||||
on|tiny) distro=$(awk 'NR==1 {print $1,$3}' /etc/release) ;;
|
on|tiny) distro=$(awk 'NR==1 {print $1,$3}' /etc/release) ;;
|
||||||
*) distro=$(awk 'NR==1 {print $1,$2,$3}' /etc/release) ;;
|
*) distro=$(awk 'NR==1 {print $1,$2,$3}' /etc/release) ;;
|
||||||
@@ -1318,8 +1334,8 @@ get_distro() {
|
|||||||
[[ $distro ]] || distro="$os (Unknown)"
|
[[ $distro ]] || distro="$os (Unknown)"
|
||||||
|
|
||||||
# Get OS architecture.
|
# Get OS architecture.
|
||||||
case $os-$kernel_name in
|
case $os in
|
||||||
Solaris-*|AIX-*|Haiku-*|IRIX-*|FreeMiNT-*|BSD-FreeBSD)
|
Solaris|illumos|AIX|Haiku|IRIX|FreeMiNT|BSD)
|
||||||
machine_arch=$(uname -p)
|
machine_arch=$(uname -p)
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -1357,7 +1373,7 @@ get_model() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Mac OS X"|"macOS")
|
"Mac OS X"|"macOS"|"ravynOS")
|
||||||
if [[ $(kextstat | grep -F -e "FakeSMC" -e "VirtualSMC" -e "Lilu") != "" ]]; then
|
if [[ $(kextstat | grep -F -e "FakeSMC" -e "VirtualSMC" -e "Lilu") != "" ]]; then
|
||||||
model="Hackintosh (SMBIOS: $(sysctl -n hw.model))"
|
model="Hackintosh (SMBIOS: $(sysctl -n hw.model))"
|
||||||
else
|
else
|
||||||
@@ -1564,7 +1580,7 @@ get_model() {
|
|||||||
model=${model/Model}
|
model=${model/Model}
|
||||||
;;
|
;;
|
||||||
|
|
||||||
Solaris)
|
Solaris|illumos)
|
||||||
model=$(prtconf -b | awk -F':' '/banner-name/ {printf $2}')
|
model=$(prtconf -b | awk -F':' '/banner-name/ {printf $2}')
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -1603,8 +1619,22 @@ get_title() {
|
|||||||
user=${USER:-$(id -un || printf %s "${HOME/*\/}")}
|
user=${USER:-$(id -un || printf %s "${HOME/*\/}")}
|
||||||
|
|
||||||
case $title_fqdn in
|
case $title_fqdn in
|
||||||
on) hostname=$(hostname -f) ;;
|
on)
|
||||||
*) hostname=$(hostname | cut -d. -f1);;
|
case $os in
|
||||||
|
illumos|Solaris)
|
||||||
|
hostname=$(hostname)
|
||||||
|
domainname=$(domainname)
|
||||||
|
[[ -n "$domainname" ]] && hostname+=".$domainname"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
hostname=$(hostname -f)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
hostname=${HOSTNAME:-$(hostname)}
|
||||||
|
hostname=${hostname%.*}
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
title=${title_color}${bold}${user}${at_color}@${title_color}${bold}${hostname}
|
title=${title_color}${bold}${user}${at_color}@${title_color}${bold}${hostname}
|
||||||
@@ -1655,7 +1685,7 @@ get_uptime() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Mac OS X"|"macOS"|"iPhone OS"|BSD|FreeMiNT)
|
"Mac OS X"|"macOS"|"ravynOS"|"iPhone OS"|BSD|FreeMiNT)
|
||||||
boot=$(sysctl -n kern.boottime)
|
boot=$(sysctl -n kern.boottime)
|
||||||
boot=${boot/\{ sec = }
|
boot=${boot/\{ sec = }
|
||||||
boot=${boot/,*}
|
boot=${boot/,*}
|
||||||
@@ -1665,9 +1695,11 @@ get_uptime() {
|
|||||||
s=$((now - boot))
|
s=$((now - boot))
|
||||||
;;
|
;;
|
||||||
|
|
||||||
Solaris)
|
Solaris|illumos)
|
||||||
s=$(kstat -p unix:0:system_misc:snaptime | awk '{print $2}')
|
boot=$(kstat -p unix:0:system_misc:boot_time | awk '{print $2}')
|
||||||
s=${s/.*}
|
now=$(date +%s)
|
||||||
|
|
||||||
|
s=$((now - boot))
|
||||||
;;
|
;;
|
||||||
|
|
||||||
AIX|IRIX)
|
AIX|IRIX)
|
||||||
@@ -1767,7 +1799,7 @@ get_packages() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
case $os in
|
case $os in
|
||||||
Linux|BSD|"iPhone OS"|Solaris)
|
Linux|BSD|"iPhone OS"|Solaris|illumos)
|
||||||
# Package Manager Programs.
|
# Package Manager Programs.
|
||||||
has kiss && tot kiss l
|
has kiss && tot kiss l
|
||||||
has cpt-list && tot cpt-list
|
has cpt-list && tot cpt-list
|
||||||
@@ -1791,6 +1823,7 @@ get_packages() {
|
|||||||
has pacstall && tot pacstall -L
|
has pacstall && tot pacstall -L
|
||||||
has bulge && tot bulge list
|
has bulge && tot bulge list
|
||||||
has pm && tot pm list packages
|
has pm && tot pm list packages
|
||||||
|
has squirrel && tot cat /var/squirrel/repos/local/INDEX
|
||||||
|
|
||||||
# Using the dnf package cache is much faster than rpm.
|
# Using the dnf package cache is much faster than rpm.
|
||||||
if has dnf && type -p sqlite3 >/dev/null && [[ -f /var/cache/dnf/packages.db ]]; then
|
if has dnf && type -p sqlite3 >/dev/null && [[ -f /var/cache/dnf/packages.db ]]; then
|
||||||
@@ -1859,6 +1892,10 @@ get_packages() {
|
|||||||
((packages == 0)) &&
|
((packages == 0)) &&
|
||||||
has pkg && tot pkg list
|
has pkg && tot pkg list
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
illumos-*)
|
||||||
|
has pkg && tot pkg list
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# List these last as they accompany regular package managers.
|
# List these last as they accompany regular package managers.
|
||||||
@@ -2025,6 +2062,8 @@ get_de() {
|
|||||||
case $os in
|
case $os in
|
||||||
"Mac OS X"|"macOS") de=Aqua ;;
|
"Mac OS X"|"macOS") de=Aqua ;;
|
||||||
|
|
||||||
|
"ravynOS") de=Magma ;;
|
||||||
|
|
||||||
Windows)
|
Windows)
|
||||||
case $distro in
|
case $distro in
|
||||||
*"Windows 10"*|*"Windows 11"*)
|
*"Windows 10"*|*"Windows 11"*)
|
||||||
@@ -2179,6 +2218,7 @@ get_wm() {
|
|||||||
-e greenfield \
|
-e greenfield \
|
||||||
-e grefsen \
|
-e grefsen \
|
||||||
-e hikari \
|
-e hikari \
|
||||||
|
-e Hyprland \
|
||||||
-e kwin \
|
-e kwin \
|
||||||
-e lipstick \
|
-e lipstick \
|
||||||
-e maynard \
|
-e maynard \
|
||||||
@@ -2476,33 +2516,67 @@ get_cpu() {
|
|||||||
[[ -z "$cpu" ]] && cpu="$(awk -F':' '/family/ {printf $2; exit}' "$cpu_file")"
|
[[ -z "$cpu" ]] && cpu="$(awk -F':' '/family/ {printf $2; exit}' "$cpu_file")"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"loongarch64")
|
|
||||||
cpu="$(awk -F':' '/Model/ {print $2; exit}' "$cpu_file")"
|
|
||||||
;;
|
|
||||||
|
|
||||||
"arm"* | "aarch64")
|
"arm"* | "aarch64")
|
||||||
if [[ $(trim "$ascii_distro") == Android* ]]; then
|
if [[ $(trim "$distro") == Android* ]]; then
|
||||||
# Android roms have modified cpuinfo that shows CPU model as a string
|
# Android roms have modified cpuinfo that shows CPU model as a string
|
||||||
cpu="$(awk -F '\\s*: | @' \
|
cpu="$(awk -F':' '/Hardware/ {print $2; exit}' "$cpu_file")"
|
||||||
'/model name|Hardware|Processor|^cpu model|chip type|^cpu type/ {
|
|
||||||
cpu=$2; if ($1 == "Hardware") exit } END { print cpu }' "$cpu_file")"
|
|
||||||
else
|
else
|
||||||
# ARM linux displays binary model code in cpuinfo, which needs to be decoded with lscpu
|
# ARM linux displays binary model code in cpuinfo, which needs to be decoded with lscpu
|
||||||
cpu="$(lscpu | awk -F': ' '/Vendor ID/ {print $2; exit}') $(lscpu | awk -F': ' '/Model name/ {print $2; exit}')"
|
if ! [[ -x "$(command -v python)" ]]; then
|
||||||
|
cpu="$(lscpu | awk -F': ' '/Vendor ID/ {print $2; exit}' ) $(lscpu | awk -F': ' '/Model name/ {print $2; exit}')"
|
||||||
|
else
|
||||||
|
# Sometimes there are multiple CPU models (e.g. RK3399 has 4 A53 and 2 A72 cores)
|
||||||
|
# However, I don't know how to implement this in awk, so I'll use python for now
|
||||||
|
read -r -d '' py_script << END
|
||||||
|
from subprocess import check_output
|
||||||
|
|
||||||
|
|
||||||
|
def find(lines, label):
|
||||||
|
for ln in lines:
|
||||||
|
if ln.strip().startswith(label):
|
||||||
|
return ln.split(label)[-1].strip()
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
lscpu = check_output('lscpu').decode()
|
||||||
|
|
||||||
|
vendor_id = find(lscpu.split('\n'), 'Vendor ID:') or None
|
||||||
|
|
||||||
|
cpus = []
|
||||||
|
|
||||||
|
for model_desc in lscpu.split('Model name:'):
|
||||||
|
lines = model_desc.split('\n')
|
||||||
|
model = lines[0].strip()
|
||||||
|
cores = int(find(lines, 'Core(s) per socket:') or "-1")
|
||||||
|
cores *= int(find(lines, 'Socket(s):') or "1")
|
||||||
|
if cores == -1:
|
||||||
|
continue
|
||||||
|
|
||||||
|
mhz = float(find(lines, 'CPU max MHz:') or find(lines, 'CPU min MHz:') or "0")
|
||||||
|
speed = f'@ {mhz / 1000:.2f} GHz' if mhz > 0 else ''
|
||||||
|
|
||||||
|
cpus.append(f'{vendor_id} {model} ({cores}) {speed}')
|
||||||
|
|
||||||
|
print('\n'.join(cpus))
|
||||||
|
END
|
||||||
|
tmp_cpus=$(python -c "$py_script")
|
||||||
|
while IFS= read -r line; do
|
||||||
|
prin "${subtitle:+${subtitle}}" "$line"
|
||||||
|
done <<< "$tmp_cpus"
|
||||||
|
|
||||||
|
return
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"riscv"*)
|
|
||||||
cpu="$(awk -F': ' '/uarch/ {print $2; exit}' "$cpu_file")"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
[[ -z "$cpu" ]] && cpu="$(awk -F '\\s*: | @' \
|
|
||||||
'/model name|Hardware|Processor|^cpu model|chip type|^cpu type/ {
|
|
||||||
cpu=$2; if ($1 == "Hardware") exit } END { print cpu }' "$cpu_file")"
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# If cpu is not detected on a platform-specific bases, fallback to cpuinfo method
|
||||||
|
[[ -z "$cpu" ]] && cpu="$(awk -F '\\s*: | @' \
|
||||||
|
'/model name|Model|uarch|Hardware|Processor|^cpu model|chip type|^cpu type/ {
|
||||||
|
cpu=$2; if ($1 == "Hardware") exit } END { print cpu }' "$cpu_file")"
|
||||||
|
|
||||||
speed_dir="/sys/devices/system/cpu/cpu0/cpufreq"
|
speed_dir="/sys/devices/system/cpu/cpu0/cpufreq"
|
||||||
|
|
||||||
# Select the right temperature file.
|
# Select the right temperature file.
|
||||||
@@ -2675,7 +2749,7 @@ get_cpu() {
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Solaris")
|
"Solaris" | "illumos")
|
||||||
# Get CPU name.
|
# Get CPU name.
|
||||||
cpu="$(psrinfo -pv)"
|
cpu="$(psrinfo -pv)"
|
||||||
cpu="${cpu//*$'\n'}"
|
cpu="${cpu//*$'\n'}"
|
||||||
@@ -3066,7 +3140,7 @@ get_memory() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"BSD" | "MINIX")
|
"BSD" | "MINIX" | "ravynOS")
|
||||||
# Mem total.
|
# Mem total.
|
||||||
case $kernel_name in
|
case $kernel_name in
|
||||||
"NetBSD"*) mem_total="$(($(sysctl -n hw.physmem64) / 1024 / 1024))" ;;
|
"NetBSD"*) mem_total="$(($(sysctl -n hw.physmem64) / 1024 / 1024))" ;;
|
||||||
@@ -3107,10 +3181,10 @@ get_memory() {
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Solaris" | "AIX")
|
"Solaris" | "illumos" | "AIX")
|
||||||
hw_pagesize="$(pagesize)"
|
hw_pagesize="$(pagesize)"
|
||||||
case $os in
|
case $os in
|
||||||
"Solaris")
|
"Solaris" | "illumos")
|
||||||
pages_total="$(kstat -p unix:0:system_pages:pagestotal | awk '{print $2}')"
|
pages_total="$(kstat -p unix:0:system_pages:pagestotal | awk '{print $2}')"
|
||||||
pages_free="$(kstat -p unix:0:system_pages:pagesfree | awk '{print $2}')"
|
pages_free="$(kstat -p unix:0:system_pages:pagesfree | awk '{print $2}')"
|
||||||
;;
|
;;
|
||||||
@@ -3156,8 +3230,8 @@ get_memory() {
|
|||||||
|
|
||||||
case $memory_unit in
|
case $memory_unit in
|
||||||
gib)
|
gib)
|
||||||
mem_used=$(awk '{printf "%.2f", $1 / $2}' <<< "$mem_used 1024")
|
mem_used=$(awk '{printf "%.1f", $1 / $2}' <<< "$mem_used 1024")
|
||||||
mem_total=$(awk '{printf "%.2f", $1 / $2}' <<< "$mem_total 1024")
|
mem_total=$(awk '{printf "%.1f", $1 / $2}' <<< "$mem_total 1024")
|
||||||
mem_label=GiB
|
mem_label=GiB
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -3168,7 +3242,7 @@ get_memory() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
memory="${mem_used}${mem_label:-MiB} / ${mem_total}${mem_label:-MiB} ${mem_perc:+(${mem_perc}%)}"
|
memory="${mem_used} ${mem_label:-MiB} / ${mem_total} ${mem_label:-MiB} ${mem_perc:+(${mem_perc}%)}"
|
||||||
|
|
||||||
# Bars.
|
# Bars.
|
||||||
case $memory_display in
|
case $memory_display in
|
||||||
@@ -3214,9 +3288,7 @@ get_network() {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done < <(sort -rn <<<"$networks" | uniq -c)
|
done < <(sort -rn <<<"$networks" | uniq -c)
|
||||||
if [ -z "$network" ]; then
|
if [ -n "$network" ]; then
|
||||||
network="None"
|
|
||||||
else
|
|
||||||
network="${network%; }"
|
network="${network%; }"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@@ -3264,6 +3336,7 @@ get_song() {
|
|||||||
"strawberry"
|
"strawberry"
|
||||||
"tauonmb"
|
"tauonmb"
|
||||||
"tomahawk"
|
"tomahawk"
|
||||||
|
"tidal-hifi"
|
||||||
"vlc"
|
"vlc"
|
||||||
"xmms2d"
|
"xmms2d"
|
||||||
"xnoise"
|
"xnoise"
|
||||||
@@ -3316,6 +3389,7 @@ get_song() {
|
|||||||
"gogglesmm"*) get_song_dbus "gogglesmm" ;;
|
"gogglesmm"*) get_song_dbus "gogglesmm" ;;
|
||||||
"xnoise"*) get_song_dbus "xnoise" ;;
|
"xnoise"*) get_song_dbus "xnoise" ;;
|
||||||
"tauonmb"*) get_song_dbus "tauon" ;;
|
"tauonmb"*) get_song_dbus "tauon" ;;
|
||||||
|
"tidal-hifi"*) get_song_dbus "tidal-hifi" ;;
|
||||||
"olivia"*) get_song_dbus "olivia" ;;
|
"olivia"*) get_song_dbus "olivia" ;;
|
||||||
"exaile"*) get_song_dbus "exaile" ;;
|
"exaile"*) get_song_dbus "exaile" ;;
|
||||||
"netease-cloud-music"*) get_song_dbus "netease-cloud-music" ;;
|
"netease-cloud-music"*) get_song_dbus "netease-cloud-music" ;;
|
||||||
@@ -3748,10 +3822,12 @@ get_style() {
|
|||||||
append_theme "$gtk3_theme" 'GTK3'
|
append_theme "$gtk3_theme" 'GTK3'
|
||||||
|
|
||||||
# Final string.
|
# Final string.
|
||||||
theme+=']'
|
if [[ -n "$theme" ]]; then
|
||||||
theme="${theme#'], '}"
|
theme+=']'
|
||||||
theme="${theme/'GTK2/GTK3'/'GTK2/3'}"
|
theme="${theme#'], '}"
|
||||||
theme="${theme%, }"
|
theme="${theme/'GTK2/GTK3'/'GTK2/3'}"
|
||||||
|
theme="${theme%, }"
|
||||||
|
fi
|
||||||
|
|
||||||
# Make the output shorter by removing "[GTKX]" from the string.
|
# Make the output shorter by removing "[GTKX]" from the string.
|
||||||
if [[ "$gtk_shorthand" == "on" ]]; then
|
if [[ "$gtk_shorthand" == "on" ]]; then
|
||||||
@@ -3811,6 +3887,30 @@ get_cursor() {
|
|||||||
cursor="$theme"
|
cursor="$theme"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_java_ver() {
|
||||||
|
if command -v java &> /dev/null; then
|
||||||
|
java_ver=$(java -version 2>&1)
|
||||||
|
java_ver=${java_ver%\"*}
|
||||||
|
java_ver=${java_ver#*\"}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
get_python_ver() {
|
||||||
|
if command -v python &> /dev/null; then
|
||||||
|
python_ver=$(python -VVV)
|
||||||
|
python_ver=${python_ver//$'\n'/}
|
||||||
|
python_ver=${python_ver//\(+([^\)])\)}
|
||||||
|
python_ver=$(echo "$python_ver" | awk '$1=$1')
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
get_node_ver() {
|
||||||
|
if command -v node &> /dev/null; then
|
||||||
|
node_ver=$(node --version)
|
||||||
|
node_ver=${node_ver#v}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
get_term() {
|
get_term() {
|
||||||
# If function was run, stop here.
|
# If function was run, stop here.
|
||||||
((term_run == 1)) && return
|
((term_run == 1)) && return
|
||||||
@@ -4424,7 +4524,7 @@ get_battery() {
|
|||||||
|
|
||||||
get_local_ip() {
|
get_local_ip() {
|
||||||
case $os in
|
case $os in
|
||||||
"Linux" | "BSD" | "Solaris" | "AIX" | "IRIX")
|
"Linux" | "BSD" | "Solaris" | "illumos" | "AIX" | "IRIX")
|
||||||
if [[ "${local_ip_interface[0]}" == "auto" ]]; then
|
if [[ "${local_ip_interface[0]}" == "auto" ]]; then
|
||||||
local_ip="$(ip route get 1 | awk -F'src' '{print $2; exit}')"
|
local_ip="$(ip route get 1 | awk -F'src' '{print $2; exit}')"
|
||||||
local_ip="${local_ip/uid*}"
|
local_ip="${local_ip/uid*}"
|
||||||
@@ -4556,8 +4656,8 @@ get_cols() {
|
|||||||
printf -v block_spaces "%${block_height}s"
|
printf -v block_spaces "%${block_height}s"
|
||||||
|
|
||||||
# Convert the spaces into rows of blocks.
|
# Convert the spaces into rows of blocks.
|
||||||
[[ "$blocks" ]] && cols+="${block_spaces// /${blocks}[mnl}"
|
[[ "$blocks" ]] && cols+="${block_spaces// /${blocks}\[mnl}"
|
||||||
[[ "$blocks2" ]] && cols+="${block_spaces// /${blocks2}[mnl}"
|
[[ "$blocks2" ]] && cols+="${block_spaces// /${blocks2}\[mnl}"
|
||||||
|
|
||||||
# Determine the horizontal offset of the blocks.
|
# Determine the horizontal offset of the blocks.
|
||||||
case $col_offset in
|
case $col_offset in
|
||||||
@@ -4648,7 +4748,7 @@ strip_escape_codes() {
|
|||||||
fi
|
fi
|
||||||
output+="${char}"
|
output+="${char}"
|
||||||
done
|
done
|
||||||
eval "$2=\"${output}\""
|
eval "$2='${output}'"
|
||||||
}
|
}
|
||||||
|
|
||||||
print_ascii() {
|
print_ascii() {
|
||||||
@@ -4668,7 +4768,9 @@ print_ascii() {
|
|||||||
then
|
then
|
||||||
lines=$ascii_lines
|
lines=$ascii_lines
|
||||||
else
|
else
|
||||||
while IFS=$'\n' read -r line; do
|
# shellcheck disable=SC2162
|
||||||
|
# Reading without -r here is intentional. See https://github.com/dylanaraps/neofetch/pull/1543
|
||||||
|
while IFS=$'\n' read line; do
|
||||||
line=${line//█/ }
|
line=${line//█/ }
|
||||||
# Fast method to strip codes
|
# Fast method to strip codes
|
||||||
strip_escape_codes "${line}" line
|
strip_escape_codes "${line}" line
|
||||||
@@ -5526,7 +5628,8 @@ cache_uname() {
|
|||||||
kernel_version="${uname[1]}"
|
kernel_version="${uname[1]}"
|
||||||
kernel_machine="${uname[2]}"
|
kernel_machine="${uname[2]}"
|
||||||
|
|
||||||
if [[ "$kernel_name" == "Darwin" ]]; then
|
if [[ "$kernel_name" == "Darwin" ]] ||
|
||||||
|
[[ "$kernel_name" == "FreeBSD" && -f /System/Library/CoreServices/SystemVersion.plist ]]; then
|
||||||
# macOS can report incorrect versions unless this is 0.
|
# macOS can report incorrect versions unless this is 0.
|
||||||
# https://github.com/dylanaraps/neofetch/issues/1607
|
# https://github.com/dylanaraps/neofetch/issues/1607
|
||||||
export SYSTEM_VERSION_COMPAT=0
|
export SYSTEM_VERSION_COMPAT=0
|
||||||
@@ -5536,6 +5639,7 @@ cache_uname() {
|
|||||||
for ((i=0;i<${#sw_vers[@]};i+=2)) {
|
for ((i=0;i<${#sw_vers[@]};i+=2)) {
|
||||||
case ${sw_vers[i]} in
|
case ${sw_vers[i]} in
|
||||||
ProductName) darwin_name=${sw_vers[i+1]} ;;
|
ProductName) darwin_name=${sw_vers[i+1]} ;;
|
||||||
|
ProductFamily) darwin_family=${sw_vers[i+1]} ;;
|
||||||
ProductVersion) osx_version=${sw_vers[i+1]} ;;
|
ProductVersion) osx_version=${sw_vers[i+1]} ;;
|
||||||
ProductBuildVersion) osx_build=${sw_vers[i+1]} ;;
|
ProductBuildVersion) osx_build=${sw_vers[i+1]} ;;
|
||||||
esac
|
esac
|
||||||
@@ -5772,43 +5876,45 @@ ASCII:
|
|||||||
|
|
||||||
NOTE: AIX, AlmaLinux, Alpine, Alter, Amazon, AmogOS, Anarchy,
|
NOTE: AIX, AlmaLinux, Alpine, Alter, Amazon, AmogOS, Anarchy,
|
||||||
Android, Antergos, antiX, AOSC OS, AOSC OS/Retro, Aperio GNU/Linux,
|
Android, Antergos, antiX, AOSC OS, AOSC OS/Retro, Aperio GNU/Linux,
|
||||||
Apricity, Arch, ArchBox, Archcraft, ARCHlabs, ArchMerge, ArchStrike,
|
Apricity, Arch, ArchBox, Archcraft, ARCHlabs, ArchStrike, ArcoLinux,
|
||||||
ArcoLinux, Artix, Arya, Asahi, AsteroidOS, Bedrock, BigLinux,
|
Artix, Arya, Asahi, AsteroidOS, astOS, Bedrock, BigLinux, Bitrig,
|
||||||
Bitrig, BlackArch, blackPanther, BLAG, BlankOn, BlueLight, Bodhi,
|
BlackArch, blackPanther, BLAG, BlankOn, BlueLight, Bodhi, bonsai,
|
||||||
bonsai, BSD, BunsenLabs, Cachy OS, Calculate, CalinixOS, Carbs, CBL-
|
BSD, BunsenLabs, Cachy OS, Calculate, CalinixOS, Carbs, CBL-Mariner,
|
||||||
Mariner, CelOS, Center, CentOS, Chakra, ChaletOS, Chapeau, Chrom,
|
CelOS, Center, CentOS, Chakra, ChaletOS, Chapeau, ChonkySealOS,
|
||||||
Cleanjaro, Clear Linux OS, ClearOS, Clover, Condres, Container Linux
|
Chrom, Cleanjaro, Clear Linux OS, ClearOS, Clover, Condres,
|
||||||
by CoreOS, CRUX, Crystal Linux, Cucumber, CutefishOS, CyberOS,
|
Container Linux by CoreOS, CRUX, Crystal Linux, Cucumber,
|
||||||
dahlia, DarkOs, Darwin, Debian, Deepin, DesaOS, Devuan, DracOS,
|
CutefishOS, CyberOS, dahlia, DarkOs, Darwin, Debian, Deepin, DesaOS,
|
||||||
DragonFly, Drauger, Elementary, Elive, EncryptOS, EndeavourOS,
|
Devuan, DietPi, DracOS, DragonFly, Drauger, Droidian, Elementary,
|
||||||
Endless, EuroLinux, Exherbo, Exodia Predator OS, Fedora, Feren,
|
Elive, EncryptOS, EndeavourOS, Endless, EuroLinux, Exherbo, Exodia
|
||||||
Finnix, FreeBSD, FreeMiNT, Frugalware, Funtoo, GalliumOS, Garuda,
|
Predator OS, Fedora, Feren, Finnix, FreeBSD, FreeMiNT, Frugalware,
|
||||||
Gentoo, glaucus, gNewSense, GNOME, GNU, GoboLinux, GrapheneOS,
|
Funtoo, GalliumOS, Garuda, Gentoo, GhostBSD, glaucus, gNewSense,
|
||||||
Grombyang, Guix, Haiku, HarDClanZ, Hash, Huayra, HydroOS, Hyperbola,
|
GNOME, GNU, GoboLinux, GrapheneOS, Grombyang, Guix, Haiku, HamoniKR,
|
||||||
iglunix, instantOS, IRIX, Itc, januslinux, Kaisen, Kali, KaOS, KDE,
|
HarDClanZ, Hash, Huayra, HydroOS, Hyperbola, iglunix, instantOS,
|
||||||
Kibojoe, Kogaion, Korora, KrassOS, KSLinux, Kubuntu, LangitKetujuh,
|
IRIX, Itc, januslinux, Kaisen, Kali, KaOS, KDE, Kibojoe, Kogaion,
|
||||||
LaxerOS, LEDE, LibreELEC, Linspire, Linux, Linux Lite, Linux Mint,
|
Korora, KrassOS, KSLinux, Kubuntu, LangitKetujuh, LaxerOS, LEDE,
|
||||||
Linux Mint Old, Live Raizo, LMDE, Lubuntu, Lunar, mac, Mageia,
|
LibreELEC, Linspire, Linux, Linux Lite, Linux Mint, Linux Mint Old,
|
||||||
MagpieOS, Mandriva, Manjaro, MassOS, MatuusOS, Maui, Mer, Minix,
|
Live Raizo, LMDE, Lubuntu, Lunar, mac, Mageia, MagpieOS, Mandriva,
|
||||||
MIRACLE LINUX, MX, Namib, Neptune, NetBSD, Netrunner, Nitrux, NixOS,
|
Manjaro, MassOS, MatuusOS, Maui, Mer, Minix, MIRACLE LINUX, MX,
|
||||||
NomadBSD, Nurunner, NuTyX, Obarun, OBRevenge, Open Source Media
|
Namib, Neptune, NetBSD, Netrunner, Nitrux, NixOS, NomadBSD,
|
||||||
|
Nurunner, NuTyX, Obarun, OBRevenge, OmniOS, Open Source Media
|
||||||
Center, OpenBSD, openEuler, OpenIndiana, openmamba, OpenMandriva,
|
Center, OpenBSD, openEuler, OpenIndiana, openmamba, OpenMandriva,
|
||||||
OpenStage, openSUSE, openSUSE Leap, openSUSE Tumbleweed, OpenWrt,
|
OpenStage, openSUSE, openSUSE Leap, openSUSE Tumbleweed, OpenWrt,
|
||||||
OPNsense, Oracle, orchid, OS Elbrus, PacBSD, Parabola, parch,
|
OPNsense, Oracle, orchid, OS Elbrus, PacBSD, Parabola, parch,
|
||||||
Pardus, Parrot, Parsix, PCBSD, PCLinuxOS, pearOS, Pengwin, Pentoo,
|
Pardus, Parrot, Parsix, PCBSD, PCLinuxOS, pearOS, Pengwin, Pentoo,
|
||||||
Peppermint, Pisi, PNM Linux, Pop!_OS, Porteus, PostMarketOS,
|
Peppermint, Pisi, PNM Linux, Pop!_OS, Porteus, PostMarketOS,
|
||||||
Profelis SambaBOX, Proxmox, PuffOS, Puppy, PureOS, Q4OS, Qubes,
|
Profelis SambaBOX, Proxmox, PuffOS, Puppy, PureOS, Q4OS, Qubes,
|
||||||
Qubyt, Quibian, Radix, Raspbian, Reborn OS, Red Star, Redcore,
|
Qubyt, Quibian, Radix, Raspbian, ravynOS, Reborn OS, Red Star,
|
||||||
Redhat, Refracted Devuan, Regata, Regolith, rocky, Rosa, Sabayon,
|
Redcore, Redhat, Refracted Devuan, Regata, Regolith, rocky, Rosa,
|
||||||
sabotage, Sailfish, SalentOS, Scientific, semc, Septor, Serene,
|
Sabayon, sabotage, Sailfish, SalentOS, Scientific, semc, Septor,
|
||||||
SharkLinux, ShastraOS, Siduction, SkiffOS, Slackware, SliTaz,
|
Serene, SharkLinux, ShastraOS, Siduction, SkiffOS, Slackware,
|
||||||
SmartOS, Soda, Solus, Source Mage, Sparky, Star, SteamOS, Sulin,
|
SliTaz, SmartOS, Soda, Solus, Source Mage, Sparky, Star, SteamOS,
|
||||||
SunOS, SwagArch, t2, Tails, TeArch, TorizonCore, Trisquel, Twister,
|
Stock Linux, Sulin, SunOS, SwagArch, t2, Tails, TeArch, TorizonCore,
|
||||||
Ubuntu, Ubuntu Budgie, Ubuntu Cinnamon, Ubuntu Kylin, Ubuntu MATE,
|
Trisquel, Twister, Ubuntu, Ubuntu Budgie, Ubuntu Cinnamon, Ubuntu
|
||||||
Ubuntu Studio, Ubuntu Sway, Ubuntu Touch, Ubuntu-GNOME,
|
Kylin, Ubuntu MATE, Ubuntu Studio, Ubuntu Sway, Ubuntu Touch,
|
||||||
ubuntu_old02, Ultramarine Linux, Univalent, Univention, Uos, uwuntu,
|
Ubuntu-GNOME, ubuntu_old02, Ultramarine Linux, Univalent,
|
||||||
Venom, VNux, Void, VzLinux, wii-linux-ngx, Windows, Windows 10,
|
Univention, Uos, uwuntu, Venom, VNux, Void, VzLinux, wii-linux-ngx,
|
||||||
Windows 11, XFerience, Xubuntu, yiffOS, Zorin have ascii logos.
|
Windows, Windows 10, Windows 11, XFerience, Xubuntu, yiffOS, Zorin
|
||||||
|
have ascii logos.
|
||||||
|
|
||||||
NOTE: arch, dragonfly, Fedora, LangitKetujuh, nixos, redhat, Ubuntu
|
NOTE: arch, dragonfly, Fedora, LangitKetujuh, nixos, redhat, Ubuntu
|
||||||
have 'old' logo variants, use {distro}_old to use them.
|
have 'old' logo variants, use {distro}_old to use them.
|
||||||
@@ -6484,6 +6590,8 @@ ${c1} ;, ,;
|
|||||||
| |
|
| |
|
||||||
'-----------------'
|
'-----------------'
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Android"*)
|
"Android"*)
|
||||||
@@ -6850,6 +6958,35 @@ ${c1} *
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"astOS"*)
|
||||||
|
set_colors 8
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c1} oQA#$%UMn
|
||||||
|
H 9
|
||||||
|
G #
|
||||||
|
6 %
|
||||||
|
?#M#%KW3"
|
||||||
|
// \\\
|
||||||
|
// \\\
|
||||||
|
// \\\
|
||||||
|
// \\\
|
||||||
|
n%@$DK&ML .0O3#@&M_
|
||||||
|
P # 8 W
|
||||||
|
H U G #
|
||||||
|
B N O @
|
||||||
|
C&&#%HNAR 'WS3QMHB"
|
||||||
|
// \\\ \\\
|
||||||
|
// \\\ \\\
|
||||||
|
// \\\ \\\
|
||||||
|
// \\\ \\\
|
||||||
|
uURF$##Bv nKWB$%ABc aM@3R@D@b
|
||||||
|
8 M @ O # %
|
||||||
|
% & G U @ @
|
||||||
|
& @ # % % #
|
||||||
|
!HGN@MNCf t&$9#%HQr ?@G#6S@QP
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
*"XFerience"*)
|
*"XFerience"*)
|
||||||
set_colors 6 6 7 1
|
set_colors 6 6 7 1
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
@@ -6875,6 +7012,34 @@ ${c1} ``--:::::::-.`
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"Stock Linux"*)
|
||||||
|
set_colors 4 7
|
||||||
|
read -rd '' ascii_data << 'EOF'
|
||||||
|
${c1}
|
||||||
|
|
||||||
|
#G5J5G#
|
||||||
|
&BPYJJJJJJJYPB&
|
||||||
|
&#G5JJJJJJY5YJJJJJJ5G#&
|
||||||
|
#G5YJJJJJY5G#& &#G5YJJJJJY5G#
|
||||||
|
BPYJJJJJJJ5B& &BPYJJJJJJYPB
|
||||||
|
JJJJJJJJJJY5G#& &BPYJJJJJ
|
||||||
|
JJJJJJJJJJJJJJY5G# &JJJJJ
|
||||||
|
PYJJJJJJJJJJJJJJJJYPB& GYJJJ
|
||||||
|
&BPYJJJJJJJJJJJJJJJJ5PB& &BP
|
||||||
|
#G5YJJJJJJJJJJJJJJJY5G#
|
||||||
|
PB& &BP5JJJJJJJJJJJJJJJJYPB&
|
||||||
|
JJJYG &BPYJJJJJJJJJJJJJJJJYP
|
||||||
|
JJJJJ& #G5YJJJJJJJJJJJJJJ
|
||||||
|
JJJJJYPB& &#G5YJJJJJJJJJJ
|
||||||
|
BPYJJJJJJYPB& &B5JJJJJJJYPB
|
||||||
|
#G5YJJJJJY5G#& &#G5YJJJJJY5G#
|
||||||
|
&#G5JJJJJJY5YJJJJJJ5G#&
|
||||||
|
&BPYJJJJJJJYPB&
|
||||||
|
#G5J5G#
|
||||||
|
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
"ArchMerge"*)
|
"ArchMerge"*)
|
||||||
set_colors 6 6 7 1
|
set_colors 6 6 7 1
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
@@ -7659,6 +7824,33 @@ ${c1} .-/-.
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"ChonkySealOS"*)
|
||||||
|
set_colors 7
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c1} .-/-.
|
||||||
|
.:-=++****++=-:.
|
||||||
|
.:=+*##%%%%%%%%%%##*+=:.
|
||||||
|
:=*#%%%%%%%%%%%%%%%%%%%%#*=:
|
||||||
|
:=*#%%%%%%%%%%%%%%%%%%%%%%%%#*=.
|
||||||
|
-+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%#+-
|
||||||
|
=+#%%%%@@@@@@@%%%%%%%@@@@@@@%%%%%#+=
|
||||||
|
=+#@%%%%*+=-==*%%%%%%%#+====*%%%%%@#+=
|
||||||
|
:+*%%%%@* +@%%%@# -@%%%%%*+:
|
||||||
|
=+#%%%%%%#+====*###%%##*=--=+*%%%%%%%#+=
|
||||||
|
+*%%%%%%%@@##%%%%*=::=#%%%##%@%%%%%%%%*+
|
||||||
|
+*%%%%%%%@**@%%%%%@==@%%%%%@+#%%%%%%%%*+
|
||||||
|
=+#%%%%%%@#*@%%%%%%**%%%%%@%+%%%%%%%%#+=
|
||||||
|
:+*%%%%%%%@#*####**###*####*%@%%%%%%%*+:
|
||||||
|
=+#@%%%%%%@%%%%%%%@@%%%%%%%%%%%%%%@#+=
|
||||||
|
=+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#+=
|
||||||
|
-+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%*+-
|
||||||
|
.=*#%%%%%%%%%%%%%%%%%%%%%%%%#*=.
|
||||||
|
:=*##%%%%%%%%%%%%%%%%%%##*=:
|
||||||
|
.:=+*##%%%%%%%%%%##*+=:.
|
||||||
|
.:-=++****++=-:.
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
"Chrom"*)
|
"Chrom"*)
|
||||||
set_colors 2 1 3 4 7
|
set_colors 2 1 3 4 7
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
@@ -8025,6 +8217,27 @@ ${c2} `Y$$
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"Droidian"*)
|
||||||
|
set_colors 2 10
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c2} _,met$$$$$gg.
|
||||||
|
,g$$$$$$$$$$$$$$$$P.
|
||||||
|
,$$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._
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
"Deepin"*)
|
"Deepin"*)
|
||||||
set_colors 2 7
|
set_colors 2 7
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
@@ -8092,6 +8305,31 @@ ${c1} ..,,;;;::;,..
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"DietPi"*)
|
||||||
|
set_colors 2 0
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c1} :=+******+- -+******+=:
|
||||||
|
=#-::-::::-=#:-#=-::::-::-#=
|
||||||
|
:%-::--==-::-%%-::-==--::-%:
|
||||||
|
+#-:::::=+++${c2}@@${c1}+++=-::::-#=
|
||||||
|
:#+-::::=%${c2}@@@@@${c1}=::::-+#:
|
||||||
|
=@%##%${c2}@@@@@@@@${c1}%##%@=
|
||||||
|
${c2} .#@@@@@@@@@@@@@@@@@@@@#.
|
||||||
|
%@@@@@@@@@@@@@@@@@@@@@@%
|
||||||
|
-@@@@@@@@@@@@@@@@@@@@@@@@:
|
||||||
|
.#@@@@@@@@@@%%%%%@@@@@@@@@@@#.
|
||||||
|
#@@@${c1}+-=*#%${c2}%%%%%%%%%${c1}%%#+--#${c2}@@@#
|
||||||
|
%@@%${c1}*. .:${c2}=*%%%%*${c1}=: .#${c2}@@@%
|
||||||
|
:%@@@${c1}#+=-:${c2}:-*%%%%+::${c1}:-=+%${c2}@@@%:
|
||||||
|
:@@@@%@%%%%@${c1}#${c2}#${c1}#${c2}%@%%%%@%@@@@.
|
||||||
|
+@@@@@@@@@${c1}%${c2}=*+${c1}%${c2}@%@@@@@@@@+
|
||||||
|
#@@@@@@@@@@@@@@@@@@@@@@#
|
||||||
|
-#@@@@@@@@@@@@@@@@@@#-
|
||||||
|
-*%@@@@@@@@@@%*-
|
||||||
|
.+%@@@@%+.
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
"DracOS"*)
|
"DracOS"*)
|
||||||
set_colors 1 7 3
|
set_colors 1 7 3
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
@@ -8952,6 +9190,37 @@ ${c3} MMMM${c4} .cOMMMMM|/MMMMM/`
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"HamoniKR"*)
|
||||||
|
set_colors 4 7 99 1 3 7
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c1}
|
||||||
|
cO0Ox.
|
||||||
|
.ldddddddo.
|
||||||
|
.lddddddddddo
|
||||||
|
'lddddddddddddc
|
||||||
|
,oddddddddddddd;
|
||||||
|
'ldddddddddddddo.
|
||||||
|
.oddddddddddddddc.
|
||||||
|
,dddddddddddddddo.
|
||||||
|
,ccoooooooocoddooo:
|
||||||
|
,cooooooooooooooooop ${c3} c000x.
|
||||||
|
${c1}.cooooooooooooooopcllll${c3} .cddddddo.
|
||||||
|
${c1}coooooooooooooop' .qlll.${c3} .ddoooooooo;
|
||||||
|
${c1}cooooooooooc; ${c3}'qlllp. .ddoooooooooo;
|
||||||
|
${c1}.cooooooc; ${c3}'lllbc...coooooooooooo;
|
||||||
|
${c1} .cooc' ${c3}.llllcoooooooooooooo.
|
||||||
|
.coooooooooooooop:
|
||||||
|
.coooooooooooooop'
|
||||||
|
.cooooooooooooop.
|
||||||
|
.cooooooooooooop.
|
||||||
|
.coooooooooooop.
|
||||||
|
.cooooooooooop.
|
||||||
|
.cooooooooop.
|
||||||
|
.cooooop'
|
||||||
|
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
"Huayra"*)
|
"Huayra"*)
|
||||||
set_colors 4 7
|
set_colors 4 7
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
@@ -9990,6 +10259,37 @@ sd yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy ds
|
|||||||
-shy yhs-
|
-shy yhs-
|
||||||
-/yyys syyy/-
|
-/yyys syyy/-
|
||||||
.:+shysyhyhhysyhs+:.
|
.:+shysyhyhhysyhs+:.
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
|
"NekOS"*)
|
||||||
|
set_colors 3 7 1
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c1}
|
||||||
|
@@@@@
|
||||||
|
@@@@@@@@@.
|
||||||
|
@@@@@@@@ @@@
|
||||||
|
@@@@@@@@@@@ @@.
|
||||||
|
@@@@@@@@@@@@@ .
|
||||||
|
@@@@@@@@@@@@@@@@@ ,
|
||||||
|
@@@@@@@@@@@@@@@@@@@
|
||||||
|
@@@@@${c2}///${c1}@@@@@@@${c2}///${c1}@@@
|
||||||
|
@@@@${c2}/***${c1}@@@@@@@${c2}**//${c1}@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
@@@/ /@@@@@@@@@/ /@@@
|
||||||
|
@@@@@@ @@@${c3}██${c1}@@@@ @@@@@@
|
||||||
|
@@@@@@/ /@${c2}██${c3}██${c2}██${c1}@@/ /@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
##########%%%%
|
||||||
|
##########%% %%
|
||||||
|
@ @@@#######@@%%%
|
||||||
|
@@@ @@@@####@@@@ %
|
||||||
|
@@@ @@@@@@@#@@@@@@@
|
||||||
|
@@@ @@@@@@@@@@@@@@@
|
||||||
|
@@@@ @@@@@@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -10194,6 +10494,25 @@ ${c1} _======__
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"GhostBSD"*)
|
||||||
|
set_colors 4
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c1} ,gggggg.
|
||||||
|
,agg9* .g)
|
||||||
|
.agg* ._.,gg*
|
||||||
|
,gga* (ggg*'
|
||||||
|
,ga* ,ga*
|
||||||
|
,ga' .ag*
|
||||||
|
,ga' .agga'
|
||||||
|
9g' .agg'g*,a
|
||||||
|
'gggg*',gga'
|
||||||
|
.gg*'
|
||||||
|
.gga*
|
||||||
|
.gga*
|
||||||
|
(ga*
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
"Nurunner"*)
|
"Nurunner"*)
|
||||||
set_colors 4
|
set_colors 4
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
@@ -10272,6 +10591,22 @@ Q@@@@@ggg@@f@ @@@@@@L
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"OmniOS"*)
|
||||||
|
set_colors 15 3 8
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c1}
|
||||||
|
____ __ __ _ _ _
|
||||||
|
/ __ \ | \/ || \ | || |
|
||||||
|
| | | || || \| || |
|
||||||
|
| |__| || |\/| || , `${c2}_${c1}||${c2}_${c1}| ${c2}____${c1}
|
||||||
|
\____/ |_| |_||_|\${c2}/ __ \ / ___|
|
||||||
|
| | | ||(__
|
||||||
|
${c3}community${c2} | |__| | ___)|
|
||||||
|
${c3}edition${c2} \____/ |____/
|
||||||
|
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
"openbsd_small")
|
"openbsd_small")
|
||||||
set_colors 3 7 6 1 8
|
set_colors 3 7 6 1 8
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
@@ -11295,6 +11630,32 @@ ${c1} `.::///+:/-. --///+//-:``
|
|||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"ravynOS")
|
||||||
|
set_colors 15
|
||||||
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
${c1} ..oooo..
|
||||||
|
.o$$$$$$$$$$$$$$o.
|
||||||
|
od$$$$$$$$$$$$$$$$$$$$$o
|
||||||
|
o$$$$$$$$$$$$$$$$$$$$$$$$$$o
|
||||||
|
.$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$.
|
||||||
|
d$$$$$$$$$********$$$$$$$$$$$$$$$b
|
||||||
|
d$$$$$$$* °****?$$$$$$$$b
|
||||||
|
$$$$$$* °$$$$$$$
|
||||||
|
d$$** .oo$$$$$$$$b
|
||||||
|
*° o$$$$$$$$$$$$$$
|
||||||
|
o$$$$$$$$$$$$$$$$
|
||||||
|
o$$$$$$$$$$$$$$$$$P
|
||||||
|
*$$$$$$$$$$$$$$$$$
|
||||||
|
?$$$$$$$$$$$$$$P
|
||||||
|
$$$$$$$$$$$$$P
|
||||||
|
$$$$$$$$$$$$P
|
||||||
|
?$$$$$$$$$$*
|
||||||
|
$$$$$$$*°
|
||||||
|
d$$$$*°
|
||||||
|
°
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
"Reborn OS"* | "Reborn"*)
|
"Reborn OS"* | "Reborn"*)
|
||||||
set_colors 2 2 8
|
set_colors 2 2 8
|
||||||
read -rd '' ascii_data <<'EOF'
|
read -rd '' ascii_data <<'EOF'
|
||||||
|
|||||||
+35
-32
@@ -1,7 +1,7 @@
|
|||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.2.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.2.
|
||||||
.TH NEOFETCH "1" "August 2022" "Neofetch 7.3.0" "User Commands"
|
.TH NEOFETCH "1" "October 2022" "Neofetch 7.3.2" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
Neofetch \- manual page for Neofetch 7.3.0
|
Neofetch \- manual page for Neofetch 7.3.2
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B neofetch
|
.B neofetch
|
||||||
\fI\,func_name --option "value" --option "value"\/\fR
|
\fI\,func_name --option "value" --option "value"\/\fR
|
||||||
@@ -303,42 +303,45 @@ Which Distro's ascii art to print
|
|||||||
.TP
|
.TP
|
||||||
NOTE: AIX, AlmaLinux, Alpine, Alter, Amazon, AmogOS, Anarchy,
|
NOTE: AIX, AlmaLinux, Alpine, Alter, Amazon, AmogOS, Anarchy,
|
||||||
Android, Antergos, antiX, AOSC OS, AOSC OS/Retro, Aperio GNU/Linux,
|
Android, Antergos, antiX, AOSC OS, AOSC OS/Retro, Aperio GNU/Linux,
|
||||||
Apricity, Arch, ArchBox, Archcraft, ARCHlabs, ArchMerge, ArchStrike,
|
Apricity, Arch, ArchBox, Archcraft, ARCHlabs, ArchStrike, ArcoLinux,
|
||||||
ArcoLinux, Artix, Arya, Asahi, AsteroidOS, Bedrock, BigLinux,
|
Artix, Arya, Asahi, AsteroidOS, astOS, Bedrock, BigLinux, Bitrig,
|
||||||
Bitrig, BlackArch, blackPanther, BLAG, BlankOn, BlueLight, Bodhi,
|
BlackArch, blackPanther, BLAG, BlankOn, BlueLight, Bodhi, bonsai,
|
||||||
bonsai, BSD, BunsenLabs, Cachy OS, Calculate, CalinixOS, Carbs, CBLMariner, CelOS, Center, CentOS, Chakra, ChaletOS, Chapeau, Chrom,
|
BSD, BunsenLabs, Cachy OS, Calculate, CalinixOS, Carbs, CBL\-Mariner,
|
||||||
Cleanjaro, Clear Linux OS, ClearOS, Clover, Condres, Container Linux
|
CelOS, Center, CentOS, Chakra, ChaletOS, Chapeau, ChonkySealOS,
|
||||||
by CoreOS, CRUX, Crystal Linux, Cucumber, CutefishOS, CyberOS,
|
Chrom, Cleanjaro, Clear Linux OS, ClearOS, Clover, Condres,
|
||||||
dahlia, DarkOs, Darwin, Debian, Deepin, DesaOS, Devuan, DracOS,
|
Container Linux by CoreOS, CRUX, Crystal Linux, Cucumber,
|
||||||
DragonFly, Drauger, Elementary, Elive, EncryptOS, EndeavourOS,
|
CutefishOS, CyberOS, dahlia, DarkOs, Darwin, Debian, Deepin, DesaOS,
|
||||||
Endless, EuroLinux, Exherbo, Exodia Predator OS, Fedora, Feren,
|
Devuan, DietPi, DracOS, DragonFly, Drauger, Droidian, Elementary,
|
||||||
Finnix, FreeBSD, FreeMiNT, Frugalware, Funtoo, GalliumOS, Garuda,
|
Elive, EncryptOS, EndeavourOS, Endless, EuroLinux, Exherbo, Exodia
|
||||||
Gentoo, glaucus, gNewSense, GNOME, GNU, GoboLinux, GrapheneOS,
|
Predator OS, Fedora, Feren, Finnix, FreeBSD, FreeMiNT, Frugalware,
|
||||||
Grombyang, Guix, Haiku, HarDClanZ, Hash, Huayra, HydroOS, Hyperbola,
|
Funtoo, GalliumOS, Garuda, Gentoo, GhostBSD, glaucus, gNewSense,
|
||||||
iglunix, instantOS, IRIX, Itc, januslinux, Kaisen, Kali, KaOS, KDE,
|
GNOME, GNU, GoboLinux, GrapheneOS, Grombyang, Guix, Haiku, HamoniKR,
|
||||||
Kibojoe, Kogaion, Korora, KrassOS, KSLinux, Kubuntu, LangitKetujuh,
|
HarDClanZ, Hash, Huayra, HydroOS, Hyperbola, iglunix, instantOS,
|
||||||
LaxerOS, LEDE, LibreELEC, Linspire, Linux, Linux Lite, Linux Mint,
|
IRIX, Itc, januslinux, Kaisen, Kali, KaOS, KDE, Kibojoe, Kogaion,
|
||||||
Linux Mint Old, Live Raizo, LMDE, Lubuntu, Lunar, mac, Mageia,
|
Korora, KrassOS, KSLinux, Kubuntu, LangitKetujuh, LaxerOS, LEDE,
|
||||||
MagpieOS, Mandriva, Manjaro, MassOS, MatuusOS, Maui, Mer, Minix,
|
LibreELEC, Linspire, Linux, Linux Lite, Linux Mint, Linux Mint Old,
|
||||||
MIRACLE LINUX, MX, Namib, Neptune, NetBSD, Netrunner, Nitrux, NixOS,
|
Live Raizo, LMDE, Lubuntu, Lunar, mac, Mageia, MagpieOS, Mandriva,
|
||||||
NomadBSD, Nurunner, NuTyX, Obarun, OBRevenge, Open Source Media
|
Manjaro, MassOS, MatuusOS, Maui, Mer, Minix, MIRACLE LINUX, MX,
|
||||||
|
Namib, Neptune, NetBSD, Netrunner, Nitrux, NixOS, NomadBSD,
|
||||||
|
Nurunner, NuTyX, Obarun, OBRevenge, OmniOS, Open Source Media
|
||||||
Center, OpenBSD, openEuler, OpenIndiana, openmamba, OpenMandriva,
|
Center, OpenBSD, openEuler, OpenIndiana, openmamba, OpenMandriva,
|
||||||
OpenStage, openSUSE, openSUSE Leap, openSUSE Tumbleweed, OpenWrt,
|
OpenStage, openSUSE, openSUSE Leap, openSUSE Tumbleweed, OpenWrt,
|
||||||
OPNsense, Oracle, orchid, OS Elbrus, PacBSD, Parabola, parch,
|
OPNsense, Oracle, orchid, OS Elbrus, PacBSD, Parabola, parch,
|
||||||
Pardus, Parrot, Parsix, PCBSD, PCLinuxOS, pearOS, Pengwin, Pentoo,
|
Pardus, Parrot, Parsix, PCBSD, PCLinuxOS, pearOS, Pengwin, Pentoo,
|
||||||
Peppermint, Pisi, PNM Linux, Pop!_OS, Porteus, PostMarketOS,
|
Peppermint, Pisi, PNM Linux, Pop!_OS, Porteus, PostMarketOS,
|
||||||
Profelis SambaBOX, Proxmox, PuffOS, Puppy, PureOS, Q4OS, Qubes,
|
Profelis SambaBOX, Proxmox, PuffOS, Puppy, PureOS, Q4OS, Qubes,
|
||||||
Qubyt, Quibian, Radix, Raspbian, Reborn OS, Red Star, Redcore,
|
Qubyt, Quibian, Radix, Raspbian, ravynOS, Reborn OS, Red Star,
|
||||||
Redhat, Refracted Devuan, Regata, Regolith, rocky, Rosa, Sabayon,
|
Redcore, Redhat, Refracted Devuan, Regata, Regolith, rocky, Rosa,
|
||||||
sabotage, Sailfish, SalentOS, Scientific, semc, Septor, Serene,
|
Sabayon, sabotage, Sailfish, SalentOS, Scientific, semc, Septor,
|
||||||
SharkLinux, ShastraOS, Siduction, SkiffOS, Slackware, SliTaz,
|
Serene, SharkLinux, ShastraOS, Siduction, SkiffOS, Slackware,
|
||||||
SmartOS, Soda, Solus, Source Mage, Sparky, Star, SteamOS, Sulin,
|
SliTaz, SmartOS, Soda, Solus, Source Mage, Sparky, Star, SteamOS,
|
||||||
SunOS, SwagArch, t2, Tails, TeArch, TorizonCore, Trisquel, Twister,
|
Stock Linux, Sulin, SunOS, SwagArch, t2, Tails, TeArch, TorizonCore,
|
||||||
Ubuntu, Ubuntu Budgie, Ubuntu Cinnamon, Ubuntu Kylin, Ubuntu MATE,
|
Trisquel, Twister, Ubuntu, Ubuntu Budgie, Ubuntu Cinnamon, Ubuntu
|
||||||
Ubuntu Studio, Ubuntu Sway, Ubuntu Touch, Ubuntu\-GNOME,
|
Kylin, Ubuntu MATE, Ubuntu Studio, Ubuntu Sway, Ubuntu Touch,
|
||||||
ubuntu_old02, Ultramarine Linux, Univalent, Univention, Uos, uwuntu,
|
Ubuntu\-GNOME, ubuntu_old02, Ultramarine Linux, Univalent,
|
||||||
Venom, VNux, Void, VzLinux, wii\-linux\-ngx, Windows, Windows 10,
|
Univention, Uos, uwuntu, Venom, VNux, Void, VzLinux, wii\-linux\-ngx,
|
||||||
Windows 11, XFerience, Xubuntu, yiffOS, Zorin have ascii logos.
|
Windows, Windows 10, Windows 11, XFerience, Xubuntu, yiffOS, Zorin
|
||||||
|
have ascii logos.
|
||||||
.TP
|
.TP
|
||||||
NOTE: arch, dragonfly, Fedora, LangitKetujuh, nixos, redhat, Ubuntu
|
NOTE: arch, dragonfly, Fedora, LangitKetujuh, nixos, redhat, Ubuntu
|
||||||
have 'old' logo variants, use {distro}_old to use them.
|
have 'old' logo variants, use {distro}_old to use them.
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "neowofetch",
|
"name": "neowofetch",
|
||||||
"version": "1.4.0",
|
"version": "1.4.2",
|
||||||
"description": "Updated neofetch",
|
"description": "Updated neofetch",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import hyfetch
|
|||||||
HERE = pathlib.Path(__file__).parent
|
HERE = pathlib.Path(__file__).parent
|
||||||
|
|
||||||
# The text of the README file
|
# The text of the README file
|
||||||
README = (HERE / "README.md").read_text()
|
README = (HERE / "README.md").read_text('utf-8')
|
||||||
|
|
||||||
# This call to setup() does all the work
|
# This call to setup() does all the work
|
||||||
setup(
|
setup(
|
||||||
@@ -33,7 +33,13 @@ setup(
|
|||||||
packages=['hyfetch'],
|
packages=['hyfetch'],
|
||||||
package_data={'hyfetch': ['hyfetch/*']},
|
package_data={'hyfetch': ['hyfetch/*']},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=['setuptools', 'typing_extensions'],
|
install_requires=[
|
||||||
|
# Universal dependencies
|
||||||
|
'setuptools', 'typing_extensions',
|
||||||
|
|
||||||
|
# Windows dependencies
|
||||||
|
'psutil ; platform_system=="Windows"',
|
||||||
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"hyfetch=hyfetch.main:run",
|
"hyfetch=hyfetch.main:run",
|
||||||
|
|||||||
@@ -0,0 +1,68 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from pathlib import Path
|
||||||
|
from urllib.request import urlretrieve
|
||||||
|
|
||||||
|
from hyfetch.color_util import printc, color
|
||||||
|
from hyfetch.neofetch_util import term_size
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Theme:
|
||||||
|
done_char: str
|
||||||
|
todo_char: str
|
||||||
|
prefix: str = ''
|
||||||
|
suffix: str = ''
|
||||||
|
done_len: int = 1
|
||||||
|
todo_len: int = 1
|
||||||
|
|
||||||
|
|
||||||
|
CLASSIC_THEME = Theme('█', '.', '[', ']')
|
||||||
|
NEW_THEME = Theme('&a━', '&c━')
|
||||||
|
EMOJI_THEME = Theme('✅', '🕑', done_len=2, todo_len=2)
|
||||||
|
EGG_THEME = Theme('🐣', '🥚', done_len=2, todo_len=2)
|
||||||
|
FLOWER_THEME = Theme('🌸', '🥀', done_len=2, todo_len=2)
|
||||||
|
|
||||||
|
|
||||||
|
def print_progressbar(total: int, i: int, length: int | None = None, theme: Theme = EMOJI_THEME, unit=''):
|
||||||
|
if not length:
|
||||||
|
length = term_size()[0]
|
||||||
|
i += 1
|
||||||
|
|
||||||
|
completed = f'{i * 100 / total:.0f}%'
|
||||||
|
placeholder = 'PLACEHOLDER_BAR'
|
||||||
|
template = f'{theme.prefix}{placeholder}{theme.suffix}&r {completed} {i}/{total}{unit}'
|
||||||
|
|
||||||
|
length -= len(template) - len(placeholder) + 2
|
||||||
|
|
||||||
|
progress = int(i / total * length)
|
||||||
|
bar = f'{theme.done_char * (progress // theme.todo_len)}{theme.todo_char * ((length - progress) // theme.done_len)}'
|
||||||
|
print(color(template.replace(placeholder, bar)), end='\r', flush=True)
|
||||||
|
|
||||||
|
|
||||||
|
def download_pbar(url: str, path: Path):
|
||||||
|
def hook(b: int, bsize: int, tsize: int):
|
||||||
|
print_progressbar(tsize // 1024 // 1024, b * bsize // 1024 // 1024, unit=' MB')
|
||||||
|
|
||||||
|
if path.is_dir():
|
||||||
|
filename = url.split('/')[-1]
|
||||||
|
path = path / filename
|
||||||
|
path.parent.mkdir(exist_ok=True, parents=True)
|
||||||
|
|
||||||
|
urlretrieve(url, filename=path, reporthook=hook)
|
||||||
|
print()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
# theme = {'emoji': EMOJI_THEME, 'flower': FLOWER_THEME, 'egg': EGG_THEME, 'classic': CLASSIC_THEME, 'new': NEW_THEME}
|
||||||
|
#
|
||||||
|
# for name, t in theme.items():
|
||||||
|
# print(f'\n{name} theme:')
|
||||||
|
# for i in range(100):
|
||||||
|
# print_progressbar(100, i, theme=t)
|
||||||
|
# time.sleep(0.015)
|
||||||
|
# print()
|
||||||
|
download_pbar('https://github.com/git-for-windows/git/releases/download/v2.37.2.windows.2/MinGit-2.37.2.2-busybox-64-bit.zip', Path('Downloads'))
|
||||||
@@ -12,6 +12,11 @@ upstream = 'dylanaraps/neofetch'
|
|||||||
my_fork = 'hykilpikonna/hyfetch'
|
my_fork = 'hykilpikonna/hyfetch'
|
||||||
my_base = 'master'
|
my_base = 'master'
|
||||||
|
|
||||||
|
http = requests.Session()
|
||||||
|
if 'GH_TOKEN' in os.environ:
|
||||||
|
print('Token loaded')
|
||||||
|
http.headers['Authorization'] = f'token {os.environ["GH_TOKEN"]}'
|
||||||
|
|
||||||
|
|
||||||
def copy_comment():
|
def copy_comment():
|
||||||
# Get commit SHA
|
# Get commit SHA
|
||||||
@@ -42,11 +47,11 @@ if __name__ == '__main__':
|
|||||||
print(f'Accepting pull request {pr}...')
|
print(f'Accepting pull request {pr}...')
|
||||||
|
|
||||||
# Fetch original pr's information
|
# Fetch original pr's information
|
||||||
info = requests.get(f'https://api.github.com/repos/{upstream}/pulls/{pr}').json()
|
info = http.get(f'https://api.github.com/repos/{upstream}/pulls/{pr}').json()
|
||||||
user = info['user']['login']
|
user = info['user']['login']
|
||||||
|
|
||||||
# Fetch commit information
|
# Fetch commit information
|
||||||
commits = requests.get(f'https://api.github.com/repos/{upstream}/pulls/{pr}/commits').json()
|
commits = http.get(f'https://api.github.com/repos/{upstream}/pulls/{pr}/commits').json()
|
||||||
author = commits[0]['commit']['author']
|
author = commits[0]['commit']['author']
|
||||||
|
|
||||||
# Create commit message
|
# Create commit message
|
||||||
|
|||||||
Executable
+156
@@ -0,0 +1,156 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
import argparse
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import shlex
|
||||||
|
import stat
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
from pathlib import Path
|
||||||
|
from packaging import version as pv
|
||||||
|
|
||||||
|
sys.path.append(str(Path(__file__).parent.parent))
|
||||||
|
|
||||||
|
from tools.list_distros import generate_help
|
||||||
|
from tools.reformat_readme import reformat_readme
|
||||||
|
|
||||||
|
|
||||||
|
def pre_check():
|
||||||
|
"""
|
||||||
|
Check source code status before releasing.
|
||||||
|
"""
|
||||||
|
assert os.path.isfile('./neofetch'), './neofetch doesn\'t exist, you are running this script in the wrong directory'
|
||||||
|
assert os.stat('./neofetch').st_mode & stat.S_IEXEC, 'neofetch is not executable'
|
||||||
|
assert os.path.islink('./hyfetch/scripts/neowofetch'), 'neowofetch is not a symbolic link'
|
||||||
|
# subprocess.check_call(shlex.split('git diff-index --quiet HEAD --')) # 'Please commit all changes before release'
|
||||||
|
|
||||||
|
subprocess.check_call(shlex.split('shellcheck neofetch'))
|
||||||
|
|
||||||
|
|
||||||
|
def edit_versions(version: str):
|
||||||
|
"""
|
||||||
|
Edit version numbers in hyfetch/constants.py, package.json, and README.md
|
||||||
|
|
||||||
|
Also edits version number of neofetch, but the neofetch version number is separate.
|
||||||
|
|
||||||
|
:param version: Version to release
|
||||||
|
"""
|
||||||
|
# 1. package.json
|
||||||
|
print('Editing package.json...')
|
||||||
|
path = Path('package.json')
|
||||||
|
content = json.loads(path.read_text())
|
||||||
|
cur = pv.parse(content['version'])
|
||||||
|
assert cur < pv.parse(version), 'Version did not increase'
|
||||||
|
content['version'] = version
|
||||||
|
path.write_text(json.dumps(content, ensure_ascii=False, indent=2))
|
||||||
|
|
||||||
|
# 2. hyfetch/constants.py
|
||||||
|
print('Editing hyfetch/constants.py...')
|
||||||
|
path = Path('hyfetch/constants.py')
|
||||||
|
content = [f"VERSION = '{version}'" if l.startswith('VERSION = ') else l for l in path.read_text().split('\n')]
|
||||||
|
path.write_text('\n'.join(content))
|
||||||
|
|
||||||
|
# 3. README.md
|
||||||
|
print('Editing README.md...')
|
||||||
|
path = Path('README.md')
|
||||||
|
content = path.read_text()
|
||||||
|
changelog_i = content.index('<!-- CHANGELOG STARTS HERE --->')
|
||||||
|
version_i = content.index('###', changelog_i)
|
||||||
|
version_end = content.index('\n', version_i)
|
||||||
|
content = content[:version_i] + f'### {version}' + content[version_end:]
|
||||||
|
path.write_text(content)
|
||||||
|
|
||||||
|
# 4. neofetch script
|
||||||
|
print('Editing neofetch...')
|
||||||
|
path = Path('neofetch')
|
||||||
|
lines = path.read_text().split('\n')
|
||||||
|
version_i = next(i for i, l in enumerate(lines) if l.startswith('version='))
|
||||||
|
nf = pv.parse(lines[version_i].replace('version=', ''))
|
||||||
|
new = pv.parse(version)
|
||||||
|
nf = f'{nf.major + new.major - cur.major}.{nf.minor + new.minor - cur.minor}.{nf.micro + new.micro - cur.micro}'
|
||||||
|
lines[version_i] = f"version={nf}"
|
||||||
|
path.write_text('\n'.join(lines))
|
||||||
|
|
||||||
|
|
||||||
|
def finalize_neofetch():
|
||||||
|
"""
|
||||||
|
Finalize current version
|
||||||
|
"""
|
||||||
|
# 1. Update distro list
|
||||||
|
print('Updating distro list in neofetch...')
|
||||||
|
path = Path('neofetch')
|
||||||
|
content = path.read_text()
|
||||||
|
content = re.compile(r'(?<=# Flag: --ascii_distro\n#\n).*?(?=ascii_distro=)', re.DOTALL)\
|
||||||
|
.sub(generate_help(100, '# ') + '\n', content)
|
||||||
|
content = re.compile(r"""(?<=Which Distro's ascii art to print\n\n).*?{distro}_small to use them\.""", re.DOTALL)\
|
||||||
|
.sub(generate_help(100, ' ' * 32), content)
|
||||||
|
path.write_text(content)
|
||||||
|
|
||||||
|
# 2. Regenerate man page
|
||||||
|
print('Regenerating neofetch man page...')
|
||||||
|
Path('neofetch.1').write_text(subprocess.check_output(['help2man', './neofetch']).decode())
|
||||||
|
|
||||||
|
# 3. Reformat readme links
|
||||||
|
print('Reformatting readme links...')
|
||||||
|
reformat_readme()
|
||||||
|
|
||||||
|
|
||||||
|
def post_check():
|
||||||
|
"""
|
||||||
|
Check after changes are made
|
||||||
|
"""
|
||||||
|
subprocess.check_call(shlex.split('shellcheck neofetch'))
|
||||||
|
|
||||||
|
|
||||||
|
def create_release(v: str):
|
||||||
|
"""
|
||||||
|
Create release commit and tag
|
||||||
|
"""
|
||||||
|
print('Committing changes...')
|
||||||
|
|
||||||
|
# 1. Add files
|
||||||
|
subprocess.check_call(['git', 'add', 'hyfetch/constants.py', 'neofetch', 'neofetch.1', 'package.json', 'README.md'])
|
||||||
|
|
||||||
|
# 2. Commit
|
||||||
|
subprocess.check_call(['git', 'commit', '-m', f'[U] Release {v}'])
|
||||||
|
|
||||||
|
# 3. Create tag
|
||||||
|
subprocess.check_call(['git', 'tag', v])
|
||||||
|
|
||||||
|
i = input('Please check the commit is correct. Press y to continue or any other key to cancel.')
|
||||||
|
assert i == 'y'
|
||||||
|
|
||||||
|
# 4. Push
|
||||||
|
print('Pushing commits...')
|
||||||
|
subprocess.check_call(['git', 'push'])
|
||||||
|
subprocess.check_call(['git', 'push', 'origin', v])
|
||||||
|
|
||||||
|
|
||||||
|
def deploy():
|
||||||
|
"""
|
||||||
|
Deploy release to pip and npm
|
||||||
|
"""
|
||||||
|
print('Deploying to pypi...')
|
||||||
|
subprocess.check_call(['bash', 'tools/deploy.sh'])
|
||||||
|
print('Done!')
|
||||||
|
|
||||||
|
print('Deploying to npm...')
|
||||||
|
otp = input('Please provide 2FA OTP for NPM: ')
|
||||||
|
subprocess.check_call(['npm', 'publish', '--otp', otp])
|
||||||
|
print('Done!')
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
parser = argparse.ArgumentParser(description='HyFetch Release Utility')
|
||||||
|
parser.add_argument('version', help='Version to release')
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
pre_check()
|
||||||
|
edit_versions(args.version)
|
||||||
|
finalize_neofetch()
|
||||||
|
post_check()
|
||||||
|
create_release(args.version)
|
||||||
|
deploy()
|
||||||
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
### Things to do before deploying...
|
||||||
|
|
||||||
|
* [x] Check file permissions (+x)
|
||||||
|
* [x] Check Shellcheck (should be automatic)
|
||||||
|
* [x] Update version numbers (`README.md`, `package.json`, `hyfetch/constants.py`, `neofetch`)
|
||||||
|
* [x] Update distro list in neofetch help (`tools/list_distros.py`)
|
||||||
|
* [x] Regenerate man page (`help2man ./neofetch > neofetch.1`)
|
||||||
|
* [ ] Create an RC release and deploy to pypi, try installing and testing on many distros.
|
||||||
|
* [ ] Change back to stable release, create tag, create GitHub release
|
||||||
|
* [x] Formally deploy to pypi and npm (`tools/deploy.sh`, `npm publish`)
|
||||||
|
* [ ] Update ArchLinux AUR and NixOS packaging
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
aix = AsciiArt(match=r'''"AIX"*''', color='2 7', ascii=r"""
|
||||||
|
${c1} `:+ssssossossss+-`
|
||||||
|
.oys///oyhddddhyo///sy+.
|
||||||
|
/yo:+hNNNNNNNNNNNNNNNNh+:oy/
|
||||||
|
:h/:yNNNNNNNNNNNNNNNNNNNNNNy-+h:
|
||||||
|
`ys.yNNNNNNNNNNNNNNNNNNNNNNNNNNy.ys
|
||||||
|
`h+-mNNNNNNNNNNNNNNNNNNNNNNNNNNNNm-oh
|
||||||
|
h+-NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN.oy
|
||||||
|
/d`mNNNNNNN/::mNNNd::m+:/dNNNo::dNNNd`m:
|
||||||
|
h//NNNNNNN: . .NNNh mNo od. -dNNNNN:+y
|
||||||
|
N.sNNNNNN+ -N/ -NNh mNNd. sNNNNNNNo-m
|
||||||
|
N.sNNNNNs +oo /Nh mNNs` ` /mNNNNNNo-m
|
||||||
|
h//NNNNh ossss` +h md- .hm/ `sNNNNN:+y
|
||||||
|
:d`mNNN+/yNNNNNd//y//h//oNNNNy//sNNNd`m-
|
||||||
|
yo-NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNm.ss
|
||||||
|
`h+-mNNNNNNNNNNNNNNNNNNNNNNNNNNNNm-oy
|
||||||
|
sy.yNNNNNNNNNNNNNNNNNNNNNNNNNNs.yo
|
||||||
|
:h+-yNNNNNNNNNNNNNNNNNNNNNNs-oh-
|
||||||
|
:ys:/yNNNNNNNNNNNNNNNmy/:sy:
|
||||||
|
.+ys///osyhhhhys+///sy+.
|
||||||
|
-/osssossossso/-
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
almalinux = AsciiArt(match=r'''"AlmaLinux"*''', color='1 3 4 2 6', ascii=r"""
|
||||||
|
${c1} 'c:.
|
||||||
|
${c1} lkkkx, .. ${c2}.. ,cc,
|
||||||
|
${c1} okkkk:ckkx' ${c2}.lxkkx.okkkkd
|
||||||
|
${c1} .:llcokkx' ${c2}:kkkxkko:xkkd,
|
||||||
|
${c1} .xkkkkdood: ${c2};kx, .lkxlll;
|
||||||
|
${c1} xkkx. ${c2}xk' xkkkkk:
|
||||||
|
${c1} 'xkx. ${c2}xd .....,.
|
||||||
|
${c3} .. ${c1}:xkl' ${c2}:c ..''..
|
||||||
|
${c3} .dkx' ${c1}.:ldl:'. ${c2}' ${c4}':lollldkkxo;
|
||||||
|
${c3} .''lkkko' ${c4}ckkkx.
|
||||||
|
${c3}'xkkkd:kkd. .. ${c5};' ${c4}:kkxo.
|
||||||
|
${c3},xkkkd;kk' ,d; ${c5}ld. ${c4}':dkd::cc,
|
||||||
|
${c3} .,,.;xkko'.';lxo. ${c5}dx, ${c4}:kkk'xkkkkc
|
||||||
|
${c3} 'dkkkkkxo:. ${c5};kx ${c4}.kkk:;xkkd.
|
||||||
|
${c3} ..... ${c5}.;dk:. ${c5}lkk. ${c4}:;,
|
||||||
|
${c5}:kkkkkkkdoxkkx
|
||||||
|
,c,,;;;:xkkd.
|
||||||
|
;kkkkl...
|
||||||
|
;kkkkl
|
||||||
|
,od;
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
alpine = AsciiArt(match=r'''"Alpine"*''', color='4 5 7 6', ascii=r"""
|
||||||
|
${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.
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
alpine_small = AsciiArt(match=r'''"alpine_small"''', color='4 7', ascii=r"""
|
||||||
|
${c1} /\\ /\\
|
||||||
|
/${c2}/ ${c1}\\ \\
|
||||||
|
/${c2}/ ${c1}\\ \\
|
||||||
|
/${c2}// ${c1}\\ \\
|
||||||
|
${c2}// ${c1}\\ \\
|
||||||
|
\\
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
alter = AsciiArt(match=r'''"Alter"*''', color='6 6', ascii=r"""
|
||||||
|
${c1} %,
|
||||||
|
^WWWw
|
||||||
|
'wwwwww
|
||||||
|
!wwwwwwww
|
||||||
|
#`wwwwwwwww
|
||||||
|
@wwwwwwwwwwww
|
||||||
|
wwwwwwwwwwwwwww
|
||||||
|
wwwwwwwwwwwwwwwww
|
||||||
|
wwwwwwwwwwwwwwwwwww
|
||||||
|
wwwwwwwwwwwwwwwwwwww,
|
||||||
|
w~1i.wwwwwwwwwwwwwwwww,
|
||||||
|
3~:~1lli.wwwwwwwwwwwwwwww.
|
||||||
|
:~~:~?ttttzwwwwwwwwwwwwwwww
|
||||||
|
#<~:~~~~?llllltO-.wwwwwwwwwww
|
||||||
|
#~:~~:~:~~?ltlltlttO-.wwwwwwwww
|
||||||
|
@~:~~:~:~:~~(zttlltltlOda.wwwwwww
|
||||||
|
@~:~~: ~:~~:~:(zltlltlO a,wwwwww
|
||||||
|
8~~:~~:~~~~:~~~~_1ltltu ,www
|
||||||
|
5~~:~~:~~:~~:~~:~~~_1ltq N,,
|
||||||
|
g~:~~:~~~:~~:~~:~:~~~~1q N,
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
amazon = AsciiArt(match=r'''"Amazon"*''', color='3 7', ascii=r"""
|
||||||
|
${c1} `-/oydNNdyo:.`
|
||||||
|
`.:+shmMMMMMMMMMMMMMMmhs+:.`
|
||||||
|
-+hNNMMMMMMMMMMMMMMMMMMMMMMNNho-
|
||||||
|
.`` -/+shmNNMMMMMMNNmhs+/- ``.
|
||||||
|
dNmhs+:. `.:/oo/:.` .:+shmNd
|
||||||
|
dMMMMMMMNdhs+:.. ..:+shdNMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMNds odNMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
||||||
|
.:+ydNMMMMMMMMMMMh yMMMMMMMMMMMNdy+:.
|
||||||
|
`.:+shNMMMMMh yMMMMMNhs+:``
|
||||||
|
`-+shy shs+:`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
amogos = AsciiArt(match=r'''"AmogOS"*''', color='15 6', ascii=r"""
|
||||||
|
${c1} ___________
|
||||||
|
/ \
|
||||||
|
/ ${c2}______${c1} \
|
||||||
|
/ ${c2}/ \${c1} \
|
||||||
|
| ${c2}( )${c1} \
|
||||||
|
/ ${c2}\______/${c1} |
|
||||||
|
| |
|
||||||
|
/ \
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
/ |
|
||||||
|
| |
|
||||||
|
| _______ |
|
||||||
|
____/ / \ |
|
||||||
|
/ | | |
|
||||||
|
| / ____/ |
|
||||||
|
\_________/ / |
|
||||||
|
\ __/
|
||||||
|
\_______/
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
anarchy = AsciiArt(match=r'''"Anarchy"*''', color='7 4', ascii=r"""
|
||||||
|
${c2}..${c1}
|
||||||
|
${c2}..${c1}
|
||||||
|
${c2}:..${c1}
|
||||||
|
${c2}:+++.${c1}
|
||||||
|
.:::++${c2}++++${c1}+::.
|
||||||
|
.:+######${c2}++++${c1}######+:.
|
||||||
|
.+#########${c2}+++++${c1}##########:.
|
||||||
|
.+##########${c2}+++++++${c1}##${c2}+${c1}#########+.
|
||||||
|
+###########${c2}+++++++++${c1}############:
|
||||||
|
+##########${c2}++++++${c1}#${c2}++++${c1}#${c2}+${c1}###########+
|
||||||
|
+###########${c2}+++++${c1}###${c2}++++${c1}#${c2}+${c1}###########+
|
||||||
|
:##########${c2}+${c1}#${c2}++++${c1}####${c2}++++${c1}#${c2}+${c1}############:
|
||||||
|
###########${c2}+++++${c1}#####${c2}+++++${c1}#${c2}+${c1}###${c2}++${c1}######+
|
||||||
|
.##########${c2}++++++${c1}#####${c2}++++++++++++${c1}#######.
|
||||||
|
.##########${c2}+++++++++++++++++++${c1}###########.
|
||||||
|
#####${c2}++++++++++++++${c1}###${c2}++++++++${c1}#########+
|
||||||
|
:###${c2}++++++++++${c1}#########${c2}+++++++${c1}#########:
|
||||||
|
+######${c2}+++++${c1}##########${c2}++++++++${c1}#######+
|
||||||
|
+####${c2}+++++${c1}###########${c2}+++++++++${c1}#####+
|
||||||
|
:##${c2}++++++${c1}############${c2}++++++++++${c1}##:
|
||||||
|
.${c2}++++++${c1}#############${c2}++++++++++${c1}+.
|
||||||
|
:${c2}++++${c1}###############${c2}+++++++${c1}::
|
||||||
|
.${c2}++. .:+${c1}##############${c2}+++++++${c1}..
|
||||||
|
${c2}.:.${c1} ..::++++++::..:${c2}++++${c1}+.
|
||||||
|
${c2}.${c1} ${c2}.:+++${c1}.
|
||||||
|
${c2}.:${c1}:
|
||||||
|
${c2}..${c1}
|
||||||
|
${c2}..${c1}
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
android = AsciiArt(match=r'''"Android"*''', color='2 7', ascii=r"""
|
||||||
|
${c1} -o o-
|
||||||
|
+hydNNNNdyh+
|
||||||
|
+mMMMMMMMMMMMMm+
|
||||||
|
`dMM${c2}m:${c1}NMMMMMMN${c2}:m${c1}MMd`
|
||||||
|
hMMMMMMMMMMMMMMMMMMh
|
||||||
|
.. yyyyyyyyyyyyyyyyyyyy ..
|
||||||
|
.mMMm`MMMMMMMMMMMMMMMMMMMM`mMMm.
|
||||||
|
:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM:
|
||||||
|
:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM:
|
||||||
|
:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM:
|
||||||
|
:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM:
|
||||||
|
-MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM-
|
||||||
|
+yy+ MMMMMMMMMMMMMMMMMMMM +yy+
|
||||||
|
mMMMMMMMMMMMMMMMMMMm
|
||||||
|
`/++MMMMh++hMMMM++/`
|
||||||
|
MMMMo oMMMM
|
||||||
|
MMMMo oMMMM
|
||||||
|
oNMm- -mMNs
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
android_small = AsciiArt(match=r'''"android_small"*''', color='2 7', ascii=r"""
|
||||||
|
${c1} ;, ,;
|
||||||
|
';,.-----.,;'
|
||||||
|
,' ',
|
||||||
|
/ O O \\
|
||||||
|
| |
|
||||||
|
'-----------------'
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
antergos = AsciiArt(match=r'''"Antergos"*''', color='4 6', ascii=r"""
|
||||||
|
${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+:.`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
antix = AsciiArt(match=r'''"antiX"*''', color='1 7 3', ascii=r"""
|
||||||
|
${c1}
|
||||||
|
\
|
||||||
|
, - ~ ^ ~ - \ /
|
||||||
|
, ' \ ' , /
|
||||||
|
, \ '/
|
||||||
|
, \ / ,
|
||||||
|
,___, \/ ,
|
||||||
|
/ | _ _ _|_ o /\ ,
|
||||||
|
|, | / |/ | | | / \ ,
|
||||||
|
\,_/\_/ | |_/|_/|_/_/ \,
|
||||||
|
, / ,\
|
||||||
|
, / , ' \
|
||||||
|
' - , _ _ _ , '
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
aosc_os = AsciiArt(match=r'''"AOSC OS"*''', color='4 7 1', ascii=r"""
|
||||||
|
${c2} .:+syhhhhys+:.
|
||||||
|
.ohNMMMMMMMMMMMMMMNho.
|
||||||
|
`+mMMMMMMMMMMmdmNMMMMMMMMm+`
|
||||||
|
+NMMMMMMMMMMMM/ `./smMMMMMN+
|
||||||
|
.mMMMMMMMMMMMMMMo -yMMMMMm.
|
||||||
|
:NMMMMMMMMMMMMMMMs .hMMMMN:
|
||||||
|
.NMMMMhmMMMMMMMMMMm+/- oMMMMN.
|
||||||
|
dMMMMs ./ymMMMMMMMMMMNy. sMMMMd
|
||||||
|
-MMMMN` oMMMMMMMMMMMN: `NMMMM-
|
||||||
|
/MMMMh NMMMMMMMMMMMMm hMMMM/
|
||||||
|
/MMMMh NMMMMMMMMMMMMm hMMMM/
|
||||||
|
-MMMMN` :MMMMMMMMMMMMy. `NMMMM-
|
||||||
|
dMMMMs .yNMMMMMMMMMMMNy/. sMMMMd
|
||||||
|
.NMMMMo -/+sMMMMMMMMMMMmMMMMN.
|
||||||
|
:NMMMMh. .MMMMMMMMMMMMMMMN:
|
||||||
|
.mMMMMMy- NMMMMMMMMMMMMMm.
|
||||||
|
+NMMMMMms/.` mMMMMMMMMMMMN+
|
||||||
|
`+mMMMMMMMMNmddMMMMMMMMMMm+`
|
||||||
|
.ohNMMMMMMMMMMMMMMNho.
|
||||||
|
.:+syhhhhys+:.
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
aosc_os_retro = AsciiArt(match=r'''"AOSC OS/Retro"*''', color='4 7 1 3', ascii=r"""
|
||||||
|
${c2} .........
|
||||||
|
...................
|
||||||
|
.....................${c1}################${c2}
|
||||||
|
.............. ....${c1}################${c2}
|
||||||
|
.............. ...${c1}################${c2}
|
||||||
|
............. ..${c1}****************${c2}
|
||||||
|
............ . .${c1}****************${c2}
|
||||||
|
........... ... ${c1}................${c2}
|
||||||
|
.......... ..... ${c1}...............${c2}
|
||||||
|
......... ....... ...
|
||||||
|
.${c3}...... ${c2}.
|
||||||
|
${c3}..... .....${c2}.... ${c4}...........
|
||||||
|
${c3}.... ......${c2}. ${c4}...........
|
||||||
|
${c3}... ....... ${c4}...........
|
||||||
|
${c3}................ ${c4}***********
|
||||||
|
${c3}................ ${c4}###########
|
||||||
|
${c3}****************
|
||||||
|
${c3}################
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
aoscosretro_small = AsciiArt(match=r'''"aoscosretro_small"''', color='4 7 1 3', ascii=r"""
|
||||||
|
${c2} _____ ${c1}_____${c2}
|
||||||
|
-' '-${c1}| |${c2}
|
||||||
|
/ ___ ${c1}| |${c2}
|
||||||
|
| / _ \\${c1}|_____|${c2}
|
||||||
|
' / /_\\ \\
|
||||||
|
\\ / _____ \\${c4}___
|
||||||
|
${c3}|${c2}/_/ ${c3}| ${c4}| |
|
||||||
|
${c3}| | ${c4}|___|
|
||||||
|
${c3}|_____|
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
aperio_gnu_linux = AsciiArt(match=r'''"Aperio GNU/Linux"*''', color='255', ascii=r"""
|
||||||
|
${c2}
|
||||||
|
_.._ _ ._.. _
|
||||||
|
(_][_)(/,[ |(_)
|
||||||
|
| GNU/Linux
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
apricity = AsciiArt(match=r'''"Apricity"*''', color='4 7 1', ascii=r"""
|
||||||
|
${c2} ./o-
|
||||||
|
``...`` `:. -/:
|
||||||
|
`-+ymNMMMMMNmho-` :sdNNm/
|
||||||
|
`+dMMMMMMMMMMMMMMMmo` sh:.:::-
|
||||||
|
/mMMMMMMMMMMMMMMMMMMMm/`sNd/
|
||||||
|
oMMMMMMMMMMMMMMMMMMMMMMMs -`
|
||||||
|
:MMMMMMMMMMMMMMMMMMMMMMMMM/
|
||||||
|
NMMMMMMMMMMMMMMMMMMMMMMMMMd
|
||||||
|
MMMMMMMmdmMMMMMMMMMMMMMMMMd
|
||||||
|
MMMMMMy` .mMMMMMMMMMMMmho:`
|
||||||
|
MMMMMMNo/sMMMMMMMNdy+-.`-/
|
||||||
|
MMMMMMMMMMMMNdy+:.`.:ohmm:
|
||||||
|
MMMMMMMmhs+-.`.:+ymNMMMy.
|
||||||
|
MMMMMM/`.-/ohmNMMMMMMy-
|
||||||
|
MMMMMMNmNNMMMMMMMMmo.
|
||||||
|
MMMMMMMMMMMMMMMms:`
|
||||||
|
MMMMMMMMMMNds/.
|
||||||
|
dhhyys+/-`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
arch = AsciiArt(match=r'''"Arch"*''', color='6 6 7 1', ascii=r"""
|
||||||
|
${c1} -`
|
||||||
|
.o+`
|
||||||
|
`ooo/
|
||||||
|
`+oooo:
|
||||||
|
`+oooooo:
|
||||||
|
-+oooooo+:
|
||||||
|
`/:-:++oooo+:
|
||||||
|
`/++++/+++++++:
|
||||||
|
`/++++++++++++++:
|
||||||
|
`/+++o${c2}oooooooo${c1}oooo/`
|
||||||
|
${c2} ${c1}./${c2}ooosssso++osssssso${c1}+`
|
||||||
|
${c2} .oossssso-````/ossssss+`
|
||||||
|
-osssssso. :ssssssso.
|
||||||
|
:osssssss/ osssso+++.
|
||||||
|
/ossssssss/ +ssssooo/-
|
||||||
|
`/ossssso+/:- -:/+osssso+-
|
||||||
|
`+sso+:-` `.-/+oso:
|
||||||
|
`++:. `-/+/
|
||||||
|
.` `/
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
arch_old = AsciiArt(match=r'''"arch_old"''', color='6 7 1', ascii=r"""
|
||||||
|
${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' '!
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
arch_small = AsciiArt(match=r'''"arch_small"''', color='6 7 1', ascii=r"""
|
||||||
|
${c1} /\\
|
||||||
|
/ \\
|
||||||
|
/\\ \\
|
||||||
|
${c2} / \\
|
||||||
|
/ ,, \\
|
||||||
|
/ | | -\\
|
||||||
|
/_-'' ''-_\\
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
archbox = AsciiArt(match=r'''"ArchBox"*''', color='2 7 1', ascii=r"""
|
||||||
|
${c1} ...:+oh/:::..
|
||||||
|
..-/oshhhhhh` `::::-.
|
||||||
|
.:/ohhhhhhhhhhhh` `-::::.
|
||||||
|
.+shhhhhhhhhhhhhhhhh` `.::-.
|
||||||
|
/`-:+shhhhhhhhhhhhhh` .-/+shh
|
||||||
|
/ .:/ohhhhhhhhh` .:/ohhhhhhhh
|
||||||
|
/ `-:+shhh` ..:+shhhhhhhhhhhh
|
||||||
|
/ .:ohhhhhhhhhhhhhhhhhhh
|
||||||
|
/ `hhhhhhhhhhhhhhhhhhhh
|
||||||
|
/ `hhhhhhhhhhhhhhhhhhhh
|
||||||
|
/ `hhhhhhhhhhhhhhhhhhhh
|
||||||
|
/ `hhhhhhhhhhhhhhhhhhhh
|
||||||
|
/ .+o+ `hhhhhhhhhhhhhhhhhhhh
|
||||||
|
/ -hhhhh `hhhhhhhhhhhhhhhhhhhh
|
||||||
|
/ ohhhhho `hhhhhhhhhhhhhhhhhhhh
|
||||||
|
/:::+`hhhhoos` `hhhhhhhhhhhhhhhhhs+`
|
||||||
|
`--/:` /: `hhhhhhhhhhhho/-
|
||||||
|
-/:. `hhhhhhs+:-`
|
||||||
|
::::/ho/-`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
archcraft = AsciiArt(match=r'''"Archcraft"*''', color='6 1 2 3 4 5', ascii=r"""
|
||||||
|
${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢰⡆${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢠⣿⣿⡄${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c3}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢀⣾⣿⣿⣿⡀${c3}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c4}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣷⡀${c4}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣿⣿⣷${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c6}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢼⣿⣿⣿⣿⣿⣿⣿⣿⣧${c6}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣰⣤⣈⠻⢿⣿⣿⣿⣿⣿⣿⣧${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣰⣿⣿⣿⣿⣮⣿⣿⣿⣿⣿⣿⣿⣧${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c3}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧${c3}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c4}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧${c4}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c6}⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣿⡿⣿⣿⡟${c6}⠄⠄${c1}⠸⣿⣿⡿⣿⣿⣿⣿⣿⣷⡀${c6}⠄⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c1}⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣿⡏${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⠈⣿⣿⣿⣿⣿⣷⡀${c1}⠄⠄⠄⠄⠄⠄⠄
|
||||||
|
${c2}⠄⠄⠄⠄⠄⠄${c1}⢀⣼⣿⣿⣿⣿⣿⣿⡗${c2}⠄⠄⠄${c1}⢀⣠⣤⣀⠄⠄⠄${c1}⠸⣿⣿⣿⣿⣿⣿⣷⡀${c2}⠄⠄⠄⠄⠄⠄
|
||||||
|
${c3}⠄⠄⠄⠄⠄${c1}⢀⣾⣿⣿⣿⣿⣿⡏⠁${c3}⠄⠄⠄${c1}⢠⣿⣿⣿⣿⡇${c3}⠄⠄⠄⠄${c1}⢙⣿⣿⣻⠿⣿⣷⡀${c3}⠄⠄⠄⠄⠄
|
||||||
|
${c4}⠄⠄⠄⠄${c1}⢀⣾⣿⣿⣿⣿⣿⣿⣷⣤⡀${c4}⠄⠄⠄${c1}⠻⣿⣿⡿⠃${c4}⠄⠄⠄${c1}⢀⣼⣿⣿⣿⣿⣦⣌⠙⠄${c4}⠄⠄⠄⠄
|
||||||
|
${c5}⠄⠄⠄${c1}⢠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⠏${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀${c5}⠄⠄⠄
|
||||||
|
${c6}⠄⠄${c1}⢠⣿⣿⣿⣿⣿⣿⣿⡿⠟⠋⠁${c6}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⠙⠻⣿⣿⣿⣿⣿⣿⣿⣿⡄${c6}⠄⠄
|
||||||
|
${c1}⠄${c1}⣠⣿⣿⣿⣿⠿⠛⠋⠁${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⠉⠙⠻⢿⣿⣿⣿⣿⣆${c1}⠄
|
||||||
|
${c1}⡰⠟⠛⠉⠁${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⠉⠙⠛⠿⢆
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
archlabs = AsciiArt(match=r'''"ARCHlabs"*''', color='6 6 7 1', ascii=r"""
|
||||||
|
${c1} 'c'
|
||||||
|
'kKk,
|
||||||
|
.dKKKx.
|
||||||
|
.oKXKXKd.
|
||||||
|
.l0XXXXKKo.
|
||||||
|
c0KXXXXKX0l.
|
||||||
|
:0XKKOxxOKX0l.
|
||||||
|
:OXKOc. .c0XX0l.
|
||||||
|
:OK0o. ${c4}...${c1}'dKKX0l.
|
||||||
|
:OX0c ${c4};xOx'${c1}'dKXX0l.
|
||||||
|
:0KKo.${c4}.o0XXKd'.${c1}lKXX0l.
|
||||||
|
c0XKd.${c4}.oKXXXXKd..${c1}oKKX0l.
|
||||||
|
.c0XKk;${c4}.l0K0OO0XKd..${c1}oKXXKo.
|
||||||
|
.l0XXXk:${c4},dKx,.'l0XKo.${c1}.kXXXKo.
|
||||||
|
.o0XXXX0d,${c4}:x; .oKKx'${c1}.dXKXXKd.
|
||||||
|
.oKXXXXKK0c.${c4};. :00c'${c1}cOXXXXXKd.
|
||||||
|
.dKXXXXXXXXk,${c4}. cKx'${c1}'xKXXXXXXKx'
|
||||||
|
'xKXXXXK0kdl:. ${c4}.ok; ${c1}.cdk0KKXXXKx'
|
||||||
|
'xKK0koc,.. ${c4}'c, ${c1} ..,cok0KKk,
|
||||||
|
,xko:'. ${c4}.. ${c1} .':okx;
|
||||||
|
.,'. .',.
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
archmerge = AsciiArt(match=r'''"ArchMerge"*''', color='6 6 7 1', ascii=r"""
|
||||||
|
${c1} y:
|
||||||
|
sMN-
|
||||||
|
+MMMm`
|
||||||
|
/MMMMMd`
|
||||||
|
:NMMMMMMy
|
||||||
|
-NMMMMMMMMs
|
||||||
|
.NMMMMMMMMMM+
|
||||||
|
.mMMMMMMMMMMMM+
|
||||||
|
oNMMMMMMMMMMMMM+
|
||||||
|
`+:-+NMMMMMMMMMMMM+
|
||||||
|
.sNMNhNMMMMMMMMMMMM/
|
||||||
|
`hho/sNMMMMMMMMMMMMMMM/
|
||||||
|
`.`omMMmMMMMMMMMMMMMMMMM+
|
||||||
|
.mMNdshMMMMd+::oNMMMMMMMMMo
|
||||||
|
.mMMMMMMMMM+ `yMMMMMMMMMs
|
||||||
|
.NMMMMMMMMM/ yMMMMMMMMMy
|
||||||
|
-NMMMMMMMMMh `mNMMMMMMMMd`
|
||||||
|
/NMMMNds+:.` `-/oymMMMm.
|
||||||
|
+Mmy/. `:smN:
|
||||||
|
/+. -o.
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
archstrike = AsciiArt(match=r'''"ArchStrike"*''', color='8 6', ascii=r"""
|
||||||
|
${c1} *
|
||||||
|
**.
|
||||||
|
****
|
||||||
|
******
|
||||||
|
*******
|
||||||
|
** *******
|
||||||
|
**** *******
|
||||||
|
${c1}****${c2}_____${c1}***${c2}/${c1}*
|
||||||
|
***${c2}/${c1}*******${c2}//${c1}***
|
||||||
|
**${c2}/${c1}********${c2}///${c1}*${c2}/${c1}**
|
||||||
|
**${c2}/${c1}*******${c2}////${c1}***${c2}/${c1}**
|
||||||
|
**${c2}/${c1}****${c2}//////.,${c1}****${c2}/${c1}**
|
||||||
|
***${c2}/${c1}*****${c2}/////////${c1}**${c2}/${c1}***
|
||||||
|
****${c2}/${c1}**** ${c2}/////${c1}***${c2}/${c1}****
|
||||||
|
******${c2}/${c1}*** ${c2}//// ${c1}**${c2}/${c1}******
|
||||||
|
********${c2}/${c1}* ${c2}/// ${c1}*${c2}/${c1}********
|
||||||
|
,****** ${c2}// ______ / ${c1}******,
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
arcolinux = AsciiArt(match=r'''"ArcoLinux"*''', color='7 4', ascii=r"""
|
||||||
|
${c2} /-
|
||||||
|
ooo:
|
||||||
|
yoooo/
|
||||||
|
yooooooo
|
||||||
|
yooooooooo
|
||||||
|
yooooooooooo
|
||||||
|
.yooooooooooooo
|
||||||
|
.oooooooooooooooo
|
||||||
|
.oooooooarcoooooooo
|
||||||
|
.ooooooooo-oooooooooo
|
||||||
|
.ooooooooo- oooooooooo
|
||||||
|
:ooooooooo. :ooooooooo
|
||||||
|
:ooooooooo. :ooooooooo
|
||||||
|
:oooarcooo .oooarcooo
|
||||||
|
:ooooooooy .ooooooooo
|
||||||
|
:ooooooooo ${c1}/ooooooooooooooooooo${c2}
|
||||||
|
:ooooooooo ${c1}.-ooooooooooooooooo.${c2}
|
||||||
|
ooooooooo- ${c1}-ooooooooooooo.${c2}
|
||||||
|
ooooooooo- ${c1}.-oooooooooo.${c2}
|
||||||
|
ooooooooo. ${c1}-ooooooooo${c2}
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
arcolinux_small = AsciiArt(match=r'''"arcolinux_small"*''', color='7 4', ascii=r"""
|
||||||
|
${c2} A
|
||||||
|
ooo
|
||||||
|
ooooo
|
||||||
|
ooooooo
|
||||||
|
ooooooooo
|
||||||
|
ooooo ooooo
|
||||||
|
ooooo ooooo
|
||||||
|
ooooo ooooo
|
||||||
|
ooooo ${c1}<oooooooo>${c2}
|
||||||
|
ooooo ${c1}<oooooo>${c2}
|
||||||
|
ooooo ${c1}<oooo>${c2}
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
artix = AsciiArt(match=r'''"Artix"*''', color='6 6 7 1', ascii=r"""
|
||||||
|
${c1} '
|
||||||
|
'o'
|
||||||
|
'ooo'
|
||||||
|
'ooxoo'
|
||||||
|
'ooxxxoo'
|
||||||
|
'oookkxxoo'
|
||||||
|
'oiioxkkxxoo'
|
||||||
|
':;:iiiioxxxoo'
|
||||||
|
`'.;::ioxxoo'
|
||||||
|
'-. `':;jiooo'
|
||||||
|
'oooio-.. `'i:io'
|
||||||
|
'ooooxxxxoio:,. `'-;'
|
||||||
|
'ooooxxxxxkkxoooIi:-. `'
|
||||||
|
'ooooxxxxxkkkkxoiiiiiji'
|
||||||
|
'ooooxxxxxkxxoiiii:'` .i'
|
||||||
|
'ooooxxxxxoi:::'` .;ioxo'
|
||||||
|
'ooooxooi::'` .:iiixkxxo'
|
||||||
|
'ooooi:'` `'';ioxxo'
|
||||||
|
'i:'` '':io'
|
||||||
|
'` `'
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
artix_small = AsciiArt(match=r'''"artix_small"*''', color='6 6 7 1', ascii=r"""
|
||||||
|
${c1} '
|
||||||
|
'A'
|
||||||
|
'ooo'
|
||||||
|
'ookxo'
|
||||||
|
`ookxxo'
|
||||||
|
'. `ooko'
|
||||||
|
'ooo`. `oo'
|
||||||
|
'ooxxxoo`. `'
|
||||||
|
'ookxxxkooo.` .
|
||||||
|
'ookxxkoo'` .'oo'
|
||||||
|
'ooxoo'` .:ooxxo'
|
||||||
|
'io'` `'oo'
|
||||||
|
'` `'
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
arya = AsciiArt(match=r'''"Arya"*''', color='2 1', ascii=r"""
|
||||||
|
${c1} `oyyy/${c2}-yyyyyy+
|
||||||
|
${c1} -syyyy/${c2}-yyyyyy+
|
||||||
|
${c1} .syyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} :yyyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} `/ :yyyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} .+s :yyyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} .oys :yyyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} -oyys :yyyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} :syyys :yyyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} /syyyys :yyyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} +yyyyyys :yyyyyy/${c2}-yyyyyy+
|
||||||
|
${c1} .oyyyyyyo. :yyyyyy/${c2}-yyyyyy+ ---------
|
||||||
|
${c1} .syyyyyy+` :yyyyyy/${c2}-yyyyy+-+syyyyyyyy
|
||||||
|
${c1} -syyyyyy/ :yyyyyy/${c2}-yyys:.syyyyyyyyyy
|
||||||
|
${c1}:syyyyyy/ :yyyyyy/${c2}-yyo.:syyyyyyyyyyy
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
asahi = AsciiArt(match=r'''"Asahi"*''', color='3 2 1 8 7 6 4', ascii=r"""
|
||||||
|
${c1} ## ${c2}**
|
||||||
|
${c1}*####${c2}****.
|
||||||
|
${c1}###${c2},
|
||||||
|
${c3}...,${c1}/#${c3},,,..
|
||||||
|
${c3}/*,,,,,,,,${c1}*${c3},........${c4},,
|
||||||
|
${c3},((((((//*,,,,,,,,${c4},......
|
||||||
|
${c3}((((((((((((((${c5}%..${c4}..........
|
||||||
|
${c3},(((((((((((((((${c5}@@(${c4}............
|
||||||
|
${c3}(((((((((((((((((${c5}@@@@/${c4}............
|
||||||
|
${c3},((((((((((((((((((${c5}@@@@@&*${c4}...........
|
||||||
|
${c3}((((((((((((((((((((${c5}@@@@@@@&${c4},...........
|
||||||
|
${c3}(((((((((((((((((((((${c5}@@@${c6}&%&${c5}@@@%${c4},..........
|
||||||
|
${c3}/(((((((((((((((((((${c5}@@@${c6}&%%&${c5}@@@@(${c4}........
|
||||||
|
${c3},((((((((((((((((${c5}@@@${c6}&&${c5}@@&/&@@@/${c4}..
|
||||||
|
${c3}/((((((((((((${c5}@@@@@@/${c4}.../&&
|
||||||
|
${c3}.(((((((((${c5}@@@@(${c4}....
|
||||||
|
${c3}/(((((${c5}@@#${c4}...
|
||||||
|
${c3}.((${c4}&,
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
asteroidos = AsciiArt(match=r'''"AsteroidOS"*''', color='160 208 202 214', ascii=r"""
|
||||||
|
${c1} ***
|
||||||
|
${c1} *****
|
||||||
|
${c1} **********
|
||||||
|
${c1} ***************
|
||||||
|
${c1} *///****////****////.
|
||||||
|
${c2} (/////// /////// ///////(
|
||||||
|
${c2} /(((((//* //, //((((((.
|
||||||
|
${c2} ((((((((((( ((( ((((((((
|
||||||
|
${c2} *((((((((((((((((((((((( ((((((((
|
||||||
|
${c3} (((((#(((((((#((((( ((#(((((
|
||||||
|
${c3} (#(#(#####(#(#, ####(#(#
|
||||||
|
${c3} ######### ########
|
||||||
|
${c3} /######## ########
|
||||||
|
${c4} #######%#######
|
||||||
|
${c4} (#%%%%%%%#
|
||||||
|
${c4} %%%%%
|
||||||
|
${c4} %%%
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
bedrock = AsciiArt(match=r'''"Bedrock"*''', color='8 7', ascii=r"""
|
||||||
|
${c1}--------------------------------------
|
||||||
|
--------------------------------------
|
||||||
|
--------------------------------------
|
||||||
|
---${c2}\\\\\\\\\\\\\\\\\\\\\\\\${c1}-----------------------
|
||||||
|
----${c2}\\\\\\ \\\\\\${c1}----------------------
|
||||||
|
-----${c2}\\\\\\ \\\\\\${c1}---------------------
|
||||||
|
------${c2}\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\${c1}------
|
||||||
|
-------${c2}\\\\\\ \\\\\\${c1}-----
|
||||||
|
--------${c2}\\\\\\ \\\\\\${c1}----
|
||||||
|
---------${c2}\\\\\\ ______ \\\\\\${c1}---
|
||||||
|
----------${c2}\\\\\\ ///${c1}---
|
||||||
|
-----------${c2}\\\\\\ ///${c1}----
|
||||||
|
------------${c2}\\\\\\ ///${c1}-----
|
||||||
|
-------------${c2}\\\\\\////////////////${c1}------
|
||||||
|
--------------------------------------
|
||||||
|
--------------------------------------
|
||||||
|
--------------------------------------
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
biglinux = AsciiArt(match=r'''"BigLinux"*''', color='6 11 4', ascii=r"""
|
||||||
|
${c1} ...
|
||||||
|
:OWMMMNd.
|
||||||
|
:NMMMMMMMMWc
|
||||||
|
okkl. kMMMMMW0xdOWMl
|
||||||
|
: xMMMMMW. kMMMMNc lW.
|
||||||
|
:x NMMMMMO ,MMMM0. 'l
|
||||||
|
Xx "lkk" kMMMX .okx,
|
||||||
|
${c2}.MX .cc;. .xXKx. KMMM: .OMMMMMl
|
||||||
|
:MM' 'KMMMMWK: 0MMMMk xMMM. lWMMMMMMM'
|
||||||
|
cMMN:;xMMMMk::MMO oMMMMX .XMM. .KMMMWOOMMMd
|
||||||
|
'MMMMMMMMN, NMMx OMMMMl .kM0OMMMMk. ;MMd
|
||||||
|
xMMMMMMd .MMMW :NMMMd .ckKKx' KMc
|
||||||
|
dWMNd. oMMMN lkNMX, oM.
|
||||||
|
;. ;MMMMx "MM:. cO
|
||||||
|
${c3} .X. oMMMMW. l.
|
||||||
|
dMk:..;xWMMMMW,
|
||||||
|
kMMMMMMMMMMX.
|
||||||
|
:XMMMMMMK:
|
||||||
|
':MM:" Made in Brazil
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
bitrig = AsciiArt(match=r'''"Bitrig"*''', color='2 7', ascii=r"""
|
||||||
|
${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
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
blackarch = AsciiArt(match=r'''"BlackArch"*''', color='1 1 0 1', ascii=r"""
|
||||||
|
${c3} 00
|
||||||
|
11
|
||||||
|
====${c1}
|
||||||
|
.${c3}//${c1}
|
||||||
|
`o${c3}//${c1}:
|
||||||
|
`+o${c3}//${c1}o:
|
||||||
|
`+oo${c3}//${c1}oo:
|
||||||
|
-+oo${c3}//${c1}oo+:
|
||||||
|
`/:-:+${c3}//${c1}ooo+:
|
||||||
|
`/+++++${c3}//${c1}+++++:
|
||||||
|
`/++++++${c3}//${c1}++++++:
|
||||||
|
`/+++o${c2}ooo${c3}//${c2}ooo${c1}oooo/`
|
||||||
|
${c2} ${c1}./${c2}ooosssso${c3}//${c2}osssssso${c1}+`
|
||||||
|
${c2} .oossssso-`${c3}//${c1}`/ossssss+`
|
||||||
|
-osssssso. ${c3}//${c1} :ssssssso.
|
||||||
|
:osssssss/ ${c3}//${c1} osssso+++.
|
||||||
|
/ossssssss/ ${c3}//${c1} +ssssooo/-
|
||||||
|
`/ossssso+/:- ${c3}//${c1} -:/+osssso+-
|
||||||
|
`+sso+:-` ${c3}//${c1} `.-/+oso:
|
||||||
|
`++:. ${c3}//${c1} `-/+/
|
||||||
|
.` ${c3}/${c1} `/
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
blackpanther = AsciiArt(match=r'''"blackPanther"* | 'blackpanther'*''', color='1 11 12', ascii=r"""
|
||||||
|
${c3} ........
|
||||||
|
.,»╔╗╗╬▄▄╫█▀▓▄▄╬╗╗g≈,.
|
||||||
|
,j╗╬╣▓▓███████▌;»╙▀▀▀▀█▄▄╗j,
|
||||||
|
.≈╗╬▓██▀▀▀▀▀╠╙░░»»;:`${c2}``>${c1}▄ ${c3}▐ ▓╫╗⌂,
|
||||||
|
.j╬▓█▀▒░░░░░░░░░»»»;:```` ╙▀█▌╬░,
|
||||||
|
;╗▓█▄▄███████▀░░»»»»;```` ╓▄▄█▄▄φ ██▌Ñ>.
|
||||||
|
.j╣█████▀▀░░░░░░░░»»╓▄▄¿``▄███████/▄████▓╬U.
|
||||||
|
.j╣▓██▀ÜÑ╦╦░░░░░░▐█@▄████⌐▐███████████████▓╬H.
|
||||||
|
«╫▓█▀░ÑÑ╩╦░░░░░░░░▀██████M"▀███████████████▓╫░
|
||||||
|
:]╣█▌ÑÑÑÑ▄▄██▀░░░░»»██████████████████████████Ñ~
|
||||||
|
»╫▓█╫ÑÑ▄███▀░░░░░»»▐██████████████████████████▌░
|
||||||
|
`j╣█▌Ñ╬████░░░░░░░»»▐████████████████████████▌▐█U`
|
||||||
|
`/╫█▌▄███▌░░░░░░░»»»;▀██████████████▀████████w▐█░`
|
||||||
|
;╟█▌███▌░░░░░░░▄▄»»;:`▀▀████████▀Ü▄████████▌ ▐▌>`
|
||||||
|
`]▓████░░░░░░░░██⌂;:````╓▄▄µp╓▄▄██████████▀ ,█M`
|
||||||
|
"╠╣██▌░░░░░░░»██▌;```` ╙▀██████████████M █▀"
|
||||||
|
"╟╣█░░░░░░░░»███⌂``` ▐▀████████▀░ █▌░`
|
||||||
|
"╩█▄░░░░░░»»▀███ `` └└` ,█▀"`
|
||||||
|
`░▀█▄░░░»»»»████@ .▄█Ü`
|
||||||
|
`╙▀█▄@»»»;`▀███▌¿ ,▄▀Ñ"`
|
||||||
|
`"╨▀█▄▄▄░`▐█████▄, ,▄▄▀▀░`
|
||||||
|
`"╙╩▀▀▀▀████████▓▌▌▌▀▀▀╨"``
|
||||||
|
``""░╚╨╝╝╝╝╨╨░""``
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
blag = AsciiArt(match=r'''"BLAG"*''', color='5 7', ascii=r"""
|
||||||
|
${c1} d
|
||||||
|
,MK:
|
||||||
|
xMMMX:
|
||||||
|
.NMMMMMX;
|
||||||
|
lMMMMMMMM0clodkO0KXWW:
|
||||||
|
KMMMMMMMMMMMMMMMMMMX'
|
||||||
|
.;d0NMMMMMMMMMMMMMMMMMMK.
|
||||||
|
.;dONMMMMMMMMMMMMMMMMMMMMMMx
|
||||||
|
'dKMMMMMMMMMMMMMMMMMMMMMMMMl
|
||||||
|
.:xKWMMMMMMMMMMMMMMMMMMM0.
|
||||||
|
.:xNMMMMMMMMMMMMMMMMMK.
|
||||||
|
lMMMMMMMMMMMMMMMMMMK.
|
||||||
|
,MMMMMMMMWkOXWMMMMMM0
|
||||||
|
.NMMMMMNd. `':ldko
|
||||||
|
OMMMK:
|
||||||
|
oWk,
|
||||||
|
;:
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
blankon = AsciiArt(match=r'''"BlankOn"*''', color='1 7 3', ascii=r"""
|
||||||
|
${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+.
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
bluelight = AsciiArt(match=r'''"BlueLight"*''', color='7 4', ascii=r"""
|
||||||
|
${c1} oMMNMMMMMMMMMMMMMMMMMMMMMM
|
||||||
|
oMMMMMMMMMMMMMMMMMMMMMMMMM
|
||||||
|
oMMMMMMMMMMMMMMMMMMMMMMMMM
|
||||||
|
oMMMMMMMMMMMMMMMMMMMMMMMMM
|
||||||
|
-+++++++++++++++++++++++mM${c2}
|
||||||
|
```````````````````````..${c1}dM${c2}
|
||||||
|
```````````````````````....${c1}dM${c2}
|
||||||
|
```````````````````````......${c1}dM${c2}
|
||||||
|
```````````````````````........${c1}dM${c2}
|
||||||
|
```````````````````````..........${c1}dM${c2}
|
||||||
|
```````````````````````............${c1}dM${c2}
|
||||||
|
.::::::::::::::::::::::-..............${c1}dM${c2}
|
||||||
|
`-+yyyyyyyyyyyyyyyyyyyo............${c1}+mMM${c2}
|
||||||
|
-+yyyyyyyyyyyyyyyyo..........${c1}+mMMMM${c2}
|
||||||
|
./syyyyyyyyyyyyo........${c1}+mMMMMMM${c2}
|
||||||
|
./oyyyyyyyyyo......${c1}+mMMMMMMMM${c2}
|
||||||
|
omdyyyyyyo....${c1}+mMMMMMMMMMM${c2}
|
||||||
|
${c1}oMMM${c2}mdhyyo..${c1}+mMMMMMMMMMMMM
|
||||||
|
oNNNNNNm${c2}dso${c1}mMMMMMMMMMMMMMM
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
bodhi = AsciiArt(match=r'''"Bodhi"*''', color='7 11 2', ascii=r"""
|
||||||
|
${c1}| ${c2},,mmKKKKKKKKWm,,
|
||||||
|
${c1}' ${c2},aKKP${c1}LL**********|L*${c2}TKp,
|
||||||
|
${c1}t ${c2}aKP${c1}L**``` ```**L${c2}*Kp
|
||||||
|
IX${c1}EL${c3}L,wwww, ${c1}``*||${c2}Kp
|
||||||
|
,#P${c1}L|${c3}KKKpPP@IPPTKmw, ${c1}`*||${c2}K
|
||||||
|
,K${c1}LL*${c3}{KKKKKKPPb$KPhpKKPKp ${c1}`||${c2}K
|
||||||
|
#${c1}PL ${c3}!KKKKKKPhKPPP$KKEhKKKKp ${c1}`||${c2}K
|
||||||
|
!H${c1}L* ${c3}1KKKKKKKphKbPKKKKKK$KKp ${c1}`|I${c2}W
|
||||||
|
$${c1}bL ${c3}KKKKKKKKBQKhKbKKKKKKKK ${c1}|I${c2}N
|
||||||
|
$${c1}bL ${c3}!KKKKKKKKKKNKKKKKKKPP` ${c1}|I${c2}b
|
||||||
|
TH${c1}L* ${c3}TKKKKKK##KKKN@KKKK^ ${c1}|I${c2}M
|
||||||
|
K@${c1}L ${c3}*KKKKKKKKKKKEKE5 ${c1}||${c2}K
|
||||||
|
`NL${c1}L ${c3}`KKKKKKKKKK"```|L ${c1}||${c2}#P
|
||||||
|
`K@${c1}LL ${c3}`"**"` ${c1}'. :||${c2}#P
|
||||||
|
Yp${c1}LL ${c1}' |L${c2}$M`
|
||||||
|
`Tp${c1}pLL, ,|||${c2}p'L
|
||||||
|
"Kpp${c1}LL++,., ,,|||$${c2}#K* ${c1}'.
|
||||||
|
${c2}`"MKWpppppppp#KM"` ${c1}`h,
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
bonsai = AsciiArt(match=r'''"bonsai"*''', color='6 2 3', ascii=r"""
|
||||||
|
${c2} ,####,
|
||||||
|
${c2}#######, ${c2},#####,
|
||||||
|
${c2}#####',# ${c2}'######
|
||||||
|
${c2}''###'${c3}';,,,'${c2}###'
|
||||||
|
${c3} ,; ''''
|
||||||
|
${c3} ;;; ${c2},#####,
|
||||||
|
${c3} ;;;' ,,;${c2};;###
|
||||||
|
${c3} ';;;;''${c2}'####'
|
||||||
|
${c3} ;;;
|
||||||
|
${c3} ,.;;';'',,,
|
||||||
|
${c3} ' '
|
||||||
|
${c1} #
|
||||||
|
# O
|
||||||
|
##, ,##,',##, ,## ,#, ,
|
||||||
|
# # # # #''# #,, # # #
|
||||||
|
'#' '##' # # ,,# '##;, #
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
bsd = AsciiArt(match=r'''*"BSD"''', color='1 7 4 3 6', ascii=r"""
|
||||||
|
${c1} , ,
|
||||||
|
/( )`
|
||||||
|
\ \___ / |
|
||||||
|
/- _ `-/ '
|
||||||
|
(${c2}/\/ \ ${c1}\ /\
|
||||||
|
${c2}/ / | ` ${c1}\
|
||||||
|
${c3}O O ${c2}) ${c1}/ |
|
||||||
|
${c2}`-^--'${c1}`< '
|
||||||
|
(_.) _ ) /
|
||||||
|
`.___/` /
|
||||||
|
`-----' /
|
||||||
|
${c4}<----. __ / __ \
|
||||||
|
${c4}<----|====${c1}O)))${c4}==${c1}) \) /${c4}====|
|
||||||
|
<----' ${c1}`--' `.__,' \
|
||||||
|
| |
|
||||||
|
\ / /\
|
||||||
|
${c5}______${c1}( (_ / \______/
|
||||||
|
${c5},' ,-----' |
|
||||||
|
`--{__________)
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
bunsenlabs = AsciiArt(match=r'''"BunsenLabs"*''', color='fg 7', ascii=r"""
|
||||||
|
${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.
|
||||||
|
-/
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
cachy_os = AsciiArt(match=r'''"Cachy OS"*''', color='2 8 6', ascii=r"""
|
||||||
|
${c3} ${c2}.${c3}-------------------------:
|
||||||
|
${c3} .${c1}+=${c3}========================.
|
||||||
|
${c3} :${c1}++${c3}===${c1}++===${c3}===============- :${c1}++${c3}-
|
||||||
|
${c3} :${c1}*++${c3}====${c1}+++++==${c3}===========- .==:
|
||||||
|
${c3} -${c1}*+++${c3}=====${c1}+***++=${c3}=========:
|
||||||
|
${c3} =${c1}*++++=${c3}=======------------:
|
||||||
|
${c3} =${c1}*+++++=${c3}====- ${c2}...${c3}
|
||||||
|
${c3} .${c1}+*+++++${c3}=-===: .${c1}=+++=${c3}:
|
||||||
|
${c3} :${c1}++++${c3}=====-==: -***${c1}**${c3}+
|
||||||
|
${c3} :${c1}++=${c3}=======-=. .=+**+${c2}.${c3}
|
||||||
|
${c3}.${c1}+${c3}==========-. ${c2}.${c3}
|
||||||
|
${c3} :${c1}+++++++${c3}====- ${c2}.${c3}--==-${c2}.${c3}
|
||||||
|
${c3} :${c1}++${c3}==========. ${c2}:${c1}+++++++${c3}${c2}:
|
||||||
|
${c3} .-===========. =*****+*+
|
||||||
|
${c3} .-===========: .+*****+:
|
||||||
|
${c3} -=======${c1}++++${c3}:::::::::::::::::::::::::-: ${c2}.${c3}---:
|
||||||
|
${c3} :======${c1}++++${c3}====${c1}+++******************=.
|
||||||
|
${c3} :=====${c1}+++${c3}==========${c1}++++++++++++++*-
|
||||||
|
${c3} .====${c1}++${c3}==============${c1}++++++++++*-
|
||||||
|
${c3} .===${c1}+${c3}==================${c1}+++++++:
|
||||||
|
${c3} .-=======================${c1}+++:
|
||||||
|
${c3} ${c2}..........................
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
calculate = AsciiArt(match=r'''"Calculate"*''', color='7 3', ascii=r"""
|
||||||
|
${c1} ......
|
||||||
|
,,+++++++,.
|
||||||
|
.,,,....,,,${c2}+**+,,.${c1}
|
||||||
|
............,${c2}++++,,,${c1}
|
||||||
|
...............
|
||||||
|
......,,,........
|
||||||
|
.....+*#####+,,,*+.
|
||||||
|
.....,*###############,..,,,,,,..
|
||||||
|
......,*#################*..,,,,,..,,,..
|
||||||
|
.,,....*####################+***+,,,,...,++,
|
||||||
|
.,,..,..*#####################*,
|
||||||
|
,+,.+*..*#######################.
|
||||||
|
,+,,+*+..,########################*
|
||||||
|
.,++++++. ..+##**###################+
|
||||||
|
..... ..+##***#################*.
|
||||||
|
.,.*#*****##############*.
|
||||||
|
..,,*********#####****+.
|
||||||
|
${c2}.,++*****+++${c1}*****************${c2}+++++,.${c1}
|
||||||
|
${c2},++++++**+++++${c1}***********${c2}+++++++++,${c1}
|
||||||
|
${c2}.,,,,++++,.. .,,,,,.....,+++,.,,${c1}
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
calinixos = AsciiArt(match=r'''"CalinixOS"''', color='4 5 4 4 4 4', ascii=r"""
|
||||||
|
${c2}
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣠⠤⠔⠒⠒⠋⠉⠉⠉⠉⠓⠒⠒⠦⠤⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠤⠒⠉⣁⣠⣤⣶⣶⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣤⣄⣈⠙⠲⢤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠴⠋⢁⣤⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣤⡈⠑⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣠⠞⢁⣠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡄⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⠞⠁⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠋⠉⠁⠀⠀⠀⠀⠈⠉⠙⠛⠿⣿⣿⣿⣿⣿⣿⠏⠀⠀⠀⠈⢢⡀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⡰⠃⣠⣾⣿⣿⣿⣿⣿⣿⡿⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠻⢿⡿⠁⠀⠀⠀⠀⠀⠀⠙⣄⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⡼⠁⣴⣿⣿⣿⣿⣿⣿⡿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀
|
||||||
|
⠀⠀⡼⠀⣼⣿⣿⣿⣿⣿⣿⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣆⠀⠀
|
||||||
|
⠀⣰⠁⣸⣿⣿⣿⣿⣿⣿⠃⠀⠀⠀⠀⠀⠀⠉⠻⣿⣿⣿⣿⣿⣿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀
|
||||||
|
⢀⡇⢠⣿⣿⣿⣿⣿⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠛⢿⣿⣿⣿⣿⣿⣷⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢳⠀
|
||||||
|
⢸⠀⣸⣿⣿⣿⣿⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣿⣿⣿⣿⣿⣿⣦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄
|
||||||
|
⣼⠀⣿⣿⣿⣿⣿⣿⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣿⣿⣿⣿⣷⣤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
||||||
|
⡇⠀⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢛⣿⣿⣿⣿⣿⣿⣿⡦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
||||||
|
⢻⠀⣿⣿⣿⣿⣿⣿⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣶⣿⣿⣿⣿⣿⣿⡿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
||||||
|
⢸⡀⢹⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣾⣿⣿⣿⣿⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃
|
||||||
|
⠀⣇⠘⣿⣿⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⣿⣿⣿⣿⡿⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡼⠀
|
||||||
|
⠀⠸⡄⢹⣿⣿⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀⣠⣶⣿⣿⣿⣿⣿⣿⠟⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀
|
||||||
|
⠀⠀⢳⡀⢻⣿⣿⣿⣿⣿⣿⣆⠀⠀⠀⠀⠀⠈⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠏⠀⠀
|
||||||
|
⠀⠀⠀⠳⡀⠻⣿⣿⣿⣿⣿⣿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣷⣄⡀⠀⠀⠀⠀⢠⠏⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠙⣄⠙⢿⣿⣿⣿⣿⣿⣿⣷⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣴⣾⣿⣿⣿⣿⣿⣦⡀⠀⡰⠃⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠈⠢⡈⠻⣿⣿⣿⣿⣿⣿⣿⣿⣷⣶⣤⣄⣀⡀⠀⠀⠀⠀⢀⣀⣠⣤⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⣠⠞⠁⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠈⠢⡈⠙⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠋⣡⠞⠁⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠓⢤⡈⠛⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⣁⠴⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠢⢄⣉⠙⠛⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠿⠛⠋⣉⡤⠖⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠓⠒⠢⠤⠤⠤⠤⠤⠤⠤⠤⠖⠒⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
calinixos_small = AsciiArt(match=r'''"CalinixOS_small"*''', color='4 5 4 4 4 4', ascii=r"""
|
||||||
|
${c2}
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⣀⠤⠐⣂⣈⣩⣭⣭⣍⣀⣐⠀⠄⡀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⡀⠔⣨⣴⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣦⣅⠢⡀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠠⢊⣴⣾⣿⣿⣿⣿⠿⠟⠛⠛⠛⠛⠻⠿⣿⣿⣿⣿⠃⠀⠠⡀⠀⠀⠀
|
||||||
|
⠀⠀⡐⢡⣾⣿⣿⣿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠁⠀⠀⠀⠈⢆⠀⠀
|
||||||
|
⠀⡘⢰⣿⣿⣿⡟⠁⠀⠀⢀⣀⣀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢂⠀
|
||||||
|
⢠⢠⣿⣿⣿⡟⠀⠀⠀⠀⠀⠙⠿⣿⣿⣷⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡀
|
||||||
|
⡄⢸⣿⣿⣿⠁⠀⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣿⣦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁
|
||||||
|
⡇⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣹⣿⣿⣿⣷⠄⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠃⢸⣿⣿⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣿⣿⡿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⡀
|
||||||
|
⠘⡘⣿⣿⣿⣧⠀⠀⠀⠀⠀⢀⣴⣿⣿⣿⠿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠁
|
||||||
|
⠀⠡⠸⣿⣿⣿⣧⡀⠀⠀⠀⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⢀⠆⠀
|
||||||
|
⠀⠀⠡⡘⢿⣿⣿⣿⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣴⣿⣷⣦⡀⢀⠊⠀⠀
|
||||||
|
⠀⠀⠀⠈⠊⡻⢿⣿⣿⣿⣿⣶⣤⣤⣤⣤⣤⣤⣶⣿⣿⣿⣿⡿⢟⠕⠁⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠈⠢⢙⠻⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⡩⠐⠁⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠈⠐⠂⠭⠉⠙⣛⣛⠋⠉⠭⠐⠂⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
carbs = AsciiArt(match=r'''"Carbs"*''', color='4 5 4 4 4 4', ascii=r"""
|
||||||
|
${c2} ..........
|
||||||
|
..,;:ccccccc:;'..
|
||||||
|
..,clllc:;;;;;:cllc,.
|
||||||
|
.,cllc,... ..';;'.
|
||||||
|
.;lol;.. ..
|
||||||
|
.,lol;.
|
||||||
|
.coo:.
|
||||||
|
.'lol,.
|
||||||
|
.,lol,.
|
||||||
|
.,lol,.
|
||||||
|
'col;.
|
||||||
|
.:ooc'.
|
||||||
|
.'col:.
|
||||||
|
.'cllc'.. .''.
|
||||||
|
..:lolc,'.......',cll,.
|
||||||
|
..;cllllccccclllc;'.
|
||||||
|
...',;;;;;;,,...
|
||||||
|
.....
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
cbl_mariner = AsciiArt(match=r'''"CBL-Mariner"*''', color='6', ascii=r"""
|
||||||
|
${c1} .
|
||||||
|
:- .
|
||||||
|
:==. .=:
|
||||||
|
:===: -==:
|
||||||
|
:-===: .====:
|
||||||
|
:-====- -=====:
|
||||||
|
-====== :=======:
|
||||||
|
-======. .=========:
|
||||||
|
-======: -==========.
|
||||||
|
-======- -===========.
|
||||||
|
:======- :===========.
|
||||||
|
:=======. .-==========.
|
||||||
|
:=======: -==========.
|
||||||
|
:=======- :==========.
|
||||||
|
:=======- .-========-
|
||||||
|
:--------. :========-
|
||||||
|
..:::--=========-
|
||||||
|
..::---================-=-
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
celos = AsciiArt(match=r'''"CelOS"*''', color='4 6 0 5', ascii=r"""
|
||||||
|
|
||||||
|
${c4} .,cmmmmmmmmmmmc,.
|
||||||
|
.,cmMMMMMMMMMMMMMMMMMMMMmc.
|
||||||
|
.cMMMMMMMMMMMMMMMMMMMMMMMMMMMmc.
|
||||||
|
.cMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMc.
|
||||||
|
,:MMM ${c3}####################################${c4}
|
||||||
|
cMMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmc.
|
||||||
|
.MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM.
|
||||||
|
.MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMc
|
||||||
|
"******************************MMMMMMMMMMMMMc:
|
||||||
|
${c3}#################################### ${c4}MMMMMMMMMMMMMc
|
||||||
|
"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM:
|
||||||
|
"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM"
|
||||||
|
'MMMMMMMMM*******************************:
|
||||||
|
\"MMMMMM ${c3}#####################################
|
||||||
|
${c4}`:MMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmm;
|
||||||
|
`"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM"
|
||||||
|
`":MMMMMMMMMMMMMMMMMMMMMMMMM;'
|
||||||
|
`":MMMMMMMMMMMMMMMMMMM:"
|
||||||
|
"************"
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
center = AsciiArt(match=r'''"Center"*''', color='7 7', ascii=r"""
|
||||||
|
${c2} .
|
||||||
|
o,
|
||||||
|
. d, .
|
||||||
|
';' ..d;.. .cl'
|
||||||
|
.:; 'oldO,.oo.
|
||||||
|
..,:,xKXxoo;'.
|
||||||
|
,;;;;;ldxkONMMMXxkxc;;;;;.
|
||||||
|
.....':oddXWMNOxlcl:......
|
||||||
|
.:dlxk0c;:. .
|
||||||
|
:d:.,xcld,.,:.
|
||||||
|
;l, .l; ';'
|
||||||
|
.o;
|
||||||
|
l,
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
centos = AsciiArt(match=r'''"CentOS"*''', color='3 2 4 5 7', ascii=r"""
|
||||||
|
${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'
|
||||||
|
''
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
centos_small = AsciiArt(match=r'''"centos_small"*''', color='3 2 4 5 7', ascii=r"""
|
||||||
|
${c2} ____${c1}^${c4}____
|
||||||
|
${c2} |\\ ${c1}|${c4} /|
|
||||||
|
${c2} | \\ ${c1}|${c4} / |
|
||||||
|
${c4}<---- ${c3}---->
|
||||||
|
${c3} | / ${c2}|${c1} \\ |
|
||||||
|
${c3} |/__${c2}|${c1}__\\|
|
||||||
|
${c2} v
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
chakra = AsciiArt(match=r'''"Chakra"*''', color='4 5 7 6', ascii=r"""
|
||||||
|
${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'
|
||||||
|
"''"
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
chaletos = AsciiArt(match=r'''"ChaletOS"*''', color='4 7 1', ascii=r"""
|
||||||
|
${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+:``
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
chapeau = AsciiArt(match=r'''"Chapeau"*''', color='2 7', ascii=r"""
|
||||||
|
${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}//////////
|
||||||
|
`////////////////.
|
||||||
|
-////////-
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
chrom = AsciiArt(match=r'''"Chrom"*''', color='2 1 3 4 7', ascii=r"""
|
||||||
|
${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:.
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
cleanjaro = AsciiArt(match=r'''"Cleanjaro"*''', color='7 7', ascii=r"""
|
||||||
|
${c1}███████▌ ████████████████
|
||||||
|
███████▌ ████████████████
|
||||||
|
███████▌ ████████████████
|
||||||
|
███████▌
|
||||||
|
███████▌
|
||||||
|
███████▌
|
||||||
|
███████▌
|
||||||
|
███████▌
|
||||||
|
█████████████████████████
|
||||||
|
█████████████████████████
|
||||||
|
█████████████████████████
|
||||||
|
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
cleanjaro_small = AsciiArt(match=r'''"cleanjaro_small"*''', color='7 7', ascii=r"""
|
||||||
|
${c1}█████ ██████████
|
||||||
|
█████ ██████████
|
||||||
|
█████
|
||||||
|
█████
|
||||||
|
█████
|
||||||
|
████████████████
|
||||||
|
████████████████
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
clear_linux_os = AsciiArt(match=r'''"Clear Linux OS"* | "Clear_Linux"*''', color='4 3 7 6', ascii=r"""
|
||||||
|
${c1} BBB
|
||||||
|
BBBBBBBBB
|
||||||
|
BBBBBBBBBBBBBBB
|
||||||
|
BBBBBBBBBBBBBBBBBBBB
|
||||||
|
BBBBBBBBBBB BBB
|
||||||
|
BBBBBBBB${c2}YYYYY
|
||||||
|
${c1} BBBBBBBB${c2}YYYYYY
|
||||||
|
${c1} BBBBBBBB${c2}YYYYYYY
|
||||||
|
${c1} BBBBBBBBB${c2}YYYYY${c3}W
|
||||||
|
${c4} GG${c1}BBBBBBBY${c2}YYYY${c3}WWW
|
||||||
|
${c4} GGG${c1}BBBBBBB${c2}YY${c3}WWWWWWWW
|
||||||
|
${c4} GGGGGG${c1}BBBBBB${c3}WWWWWWWW
|
||||||
|
${c4} GGGGGGGG${c1}BBBB${c3}WWWWWWWW
|
||||||
|
${c4}GGGGGGGGGGG${c1}BBB${c3}WWWWWWW
|
||||||
|
${c4}GGGGGGGGGGGGG${c1}B${c3}WWWWWW
|
||||||
|
${c4}GGGGGGGG${c3}WWWWWWWWWWW
|
||||||
|
${c4}GG${c3}WWWWWWWWWWWWWWWW
|
||||||
|
WWWWWWWWWWWWWWWW
|
||||||
|
WWWWWWWWWW
|
||||||
|
WWW
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
clearos = AsciiArt(match=r'''"ClearOS"*''', color='2', ascii=r"""
|
||||||
|
${c1} `.--::::::--.`
|
||||||
|
.-:////////////////:-.
|
||||||
|
`-////////////////////////-`
|
||||||
|
-////////////////////////////-
|
||||||
|
`//////////////-..-//////////////`
|
||||||
|
./////////////: ://///////////.
|
||||||
|
`//////:..-////: :////-..-//////`
|
||||||
|
://////` -///:.``.:///-` ://///:
|
||||||
|
`///////:. -////////-` `:///////`
|
||||||
|
.//:--////:. -////-` `:////--://.
|
||||||
|
./: .////:. --` `:////- :/.
|
||||||
|
`//-` .////:. `:////- `-//`
|
||||||
|
:///-` .////:. `:////- `-///:
|
||||||
|
`/////-` -///: :///- `-/////`
|
||||||
|
`//////- `///: :///` .//////`
|
||||||
|
`:////: `///: :///` -////:`
|
||||||
|
.://: `///: :///` -//:.
|
||||||
|
.:: `///: :///` -:.
|
||||||
|
`///: :///`
|
||||||
|
`... ...`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
clover = AsciiArt(match=r'''"Clover"*''', color='2 6', ascii=r"""
|
||||||
|
${c1} `omo``omo`
|
||||||
|
`oNMMMNNMMMNo`
|
||||||
|
`oNMMMMMMMMMMMMNo`
|
||||||
|
oNMMMMMMMMMMMMMMMMNo
|
||||||
|
`sNMMMMMMMMMMMMMMNs`
|
||||||
|
`omo` `sNMMMMMMMMMMNs` `omo`
|
||||||
|
`oNMMMNo` `sNMMMMMMNs` `oNMMMNo`
|
||||||
|
`oNMMMMMMMNo` `oNMMNs` `oNMMMMMMMNo`
|
||||||
|
oNMMMMMMMMMMMNo` `sy` `oNMMMMMMMMMMMNo
|
||||||
|
`sNMMMMMMMMMMMMNo.${c2}oNNs${c1}.oNMMMMMMMMMMMMNs`
|
||||||
|
`oNMMMMMMMMMMMMNs.${c2}oNNs${c1}.oNMMMMMMMMMMMMNo`
|
||||||
|
oNMMMMMMMMMMMNs` `sy` `oNMMMMMMMMMMMNo
|
||||||
|
`oNMMMMMMMNs` `oNMMNo` `oNMMMMMMMNs`
|
||||||
|
`oNMMMNs` `sNMMMMMMNs` `oNMMMNs`
|
||||||
|
`oNs` `sNMMMMMMMMMMNs` `oNs`
|
||||||
|
`sNMMMMMMMMMMMMMMNs`
|
||||||
|
+NMMMMMMMMMMMMMMMMNo
|
||||||
|
`oNMMMMMMMMMMMMNo`
|
||||||
|
`oNMMMNNMMMNs`
|
||||||
|
`omo``oNs`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
condres = AsciiArt(match=r'''"Condres"*''', color='2 3 6', ascii=r"""
|
||||||
|
${c1}syyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy+${c3}.+.
|
||||||
|
${c1}`oyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy+${c3}:++.
|
||||||
|
${c2}/o${c1}+oyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy/${c3}oo++.
|
||||||
|
${c2}/y+${c1}syyyyyyyyyyyyyyyyyyyyyyyyyyyyy${c3}+ooo++.
|
||||||
|
${c2}/hy+${c1}oyyyhhhhhhhhhhhhhhyyyyyyyyy${c3}+oo+++++.
|
||||||
|
${c2}/hhh+${c1}shhhhhdddddhhhhhhhyyyyyyy${c3}+oo++++++.
|
||||||
|
${c2}/hhdd+${c1}oddddddddddddhhhhhyyyys${c3}+oo+++++++.
|
||||||
|
${c2}/hhddd+${c1}odmmmdddddddhhhhyyyy${c3}+ooo++++++++.
|
||||||
|
${c2}/hhdddmo${c1}odmmmdddddhhhhhyyy${c3}+oooo++++++++.
|
||||||
|
${c2}/hdddmmms${c1}/dmdddddhhhhyyys${c3}+oooo+++++++++.
|
||||||
|
${c2}/hddddmmmy${c1}/hdddhhhhyyyyo${c3}+oooo++++++++++:
|
||||||
|
${c2}/hhdddmmmmy${c1}:yhhhhyyyyy+${c3}+oooo+++++++++++:
|
||||||
|
${c2}/hhddddddddy${c1}-syyyyyys+${c3}ooooo++++++++++++:
|
||||||
|
${c2}/hhhddddddddy${c1}-+yyyy+${c3}/ooooo+++++++++++++:
|
||||||
|
${c2}/hhhhhdddddhhy${c1}./yo:${c3}+oooooo+++++++++++++/
|
||||||
|
${c2}/hhhhhhhhhhhhhy${c1}:-.${c3}+sooooo+++++++++++///:
|
||||||
|
${c2}:sssssssssssso++${c1}${c3}`:/:--------.````````
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
container_linux_by_coreos = AsciiArt(match=r'''"Container Linux by CoreOS"* | "Container_Linux"*''', color='4 7 1', ascii=r"""
|
||||||
|
${c1} .....
|
||||||
|
.';:cccccccc:;'.
|
||||||
|
':ccccclc${c3}lllllllll${c1}cc:.
|
||||||
|
.;cccccccc${c3}lllllllllllllll${c1}c,
|
||||||
|
;clllccccc${c3}llllllllllllllllll${c1}c,
|
||||||
|
.cllclccccc${c3}lllll${c2}lll${c3}llllllllllll${c1}c:
|
||||||
|
ccclclcccc${c3}cllll${c2}kWMMNKk${c3}llllllllll${c1}c:
|
||||||
|
:ccclclcccc${c3}llll${c2}oWMMMMMMWO${c3}lllllllll${c1}c,
|
||||||
|
.ccllllllccc${c3}clll${c2}OMMMMMMMMM0${c3}lllllllll${c1}c
|
||||||
|
.lllllclcccc${c3}llll${c2}KMMMMMMMMMMo${c3}llllllll${c1}c.
|
||||||
|
.lllllllcccc${c3}clll${c2}KMMMMMMMMN0${c3}lllllllll${c1}c.
|
||||||
|
.cclllllcccc${c3}lllld${c2}xkkxxdo${c3}llllllllllc${c1}lc
|
||||||
|
:cccllllllcccc${c3}lllccllllcclccc${c1}cccccc;
|
||||||
|
.ccclllllllcccccccc${c3}lll${c1}ccccclccccccc
|
||||||
|
.cllllllllllclcccclccclccllllcllc
|
||||||
|
:cllllllllccclcllllllllllllcc;
|
||||||
|
.cccccccccccccclcccccccccc:.
|
||||||
|
.;cccclccccccllllllccc,.
|
||||||
|
.';ccccclllccc:;..
|
||||||
|
.....
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
crux = AsciiArt(match=r'''"CRUX"*''', color='4 5 7 6', ascii=r"""
|
||||||
|
${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
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
crux_small = AsciiArt(match=r'''"crux_small" | KISS*''', color='4 5 7 6', ascii=r"""
|
||||||
|
${c1} ___
|
||||||
|
(${c3}.· ${c1}|
|
||||||
|
(${c2}<> ${c1}|
|
||||||
|
/ ${c3}__ ${c1}\\
|
||||||
|
( ${c3}/ \\ ${c1}/|
|
||||||
|
${c2}_${c1}/\\ ${c3}__)${c1}/${c2}_${c1})
|
||||||
|
${c2}\/${c1}-____${c2}\/
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
crystal_linux = AsciiArt(match=r'''*"Crystal Linux"*''', color='13 5', ascii=r"""
|
||||||
|
${c1} mysssym
|
||||||
|
${c1} mysssym
|
||||||
|
${c1} mysssym
|
||||||
|
${c1} mysssym
|
||||||
|
${c1} mysssyd
|
||||||
|
${c1} mysssyd N
|
||||||
|
${c1} mysssyd mysym
|
||||||
|
${c1} mysssyd dysssym
|
||||||
|
${c1} mysssyd dysssym
|
||||||
|
${c1} mysssyd dysssym
|
||||||
|
${c1} mysssyd dysssym
|
||||||
|
${c1} mysssyd dysssym
|
||||||
|
${c1} mysssyd dysssym
|
||||||
|
${c1} mysym dysssym
|
||||||
|
${c1} N dysssym
|
||||||
|
${c1} dysssym
|
||||||
|
${c1} dysssym
|
||||||
|
${c1} dysssym
|
||||||
|
${c1} dysssym
|
||||||
|
${c1} dysssym
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
cucumber = AsciiArt(match=r'''*"Cucumber"*''', color='2 3', ascii=r"""
|
||||||
|
${c1} `.-://++++++//:-.`
|
||||||
|
`:/+//${c2}::--------${c1}:://+/:`
|
||||||
|
-++/:${c2}----..........----${c1}:/++-
|
||||||
|
.++:${c2}---...........-......---${c1}:++.
|
||||||
|
/+:${c2}---....-::/:/--//:::-....---${c1}:+/
|
||||||
|
`++:${c2}--.....:---::/--/::---:.....--${c1}:++`
|
||||||
|
/+:${c2}--.....--.--::::-/::--.--.....--${c1}:+/
|
||||||
|
-o:${c2}--.......-:::://--/:::::-.......--${c1}:o-
|
||||||
|
/+:${c2}--...-:-::---:::..:::---:--:-...--${c1}:+/
|
||||||
|
o/:${c2}-...-:.:.-/:::......::/:.--.:-...-${c1}:/o
|
||||||
|
o/${c2}--...::-:/::/:-......-::::::-/-...-${c1}:/o
|
||||||
|
/+:${c2}--..-/:/:::--:::..:::--::////-..--${c1}:+/
|
||||||
|
-o:${c2}--...----::/:::/--/:::::-----...--${c1}:o-
|
||||||
|
/+:${c2}--....://:::.:/--/:.::://:....--${c1}:+/
|
||||||
|
`++:${c2}--...-:::.--.:..:.--.:/:-...--${c1}:++`
|
||||||
|
/+:${c2}---....----:-..-:----....---${c1}:+/
|
||||||
|
.++:${c2}---..................---${c1}:++.
|
||||||
|
-/+/:${c2}----..........----${c1}:/+/-
|
||||||
|
`:/+//${c2}::--------:::${c1}/+/:`
|
||||||
|
`.-://++++++//:-.`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
cutefishos = AsciiArt(match=r'''"CutefishOS"*''', color='6 7 4', ascii=r"""
|
||||||
|
${c1} ___ww___
|
||||||
|
_ _wwMMM@M^^^^MMMMww_
|
||||||
|
M0w_ _wMMM~~ ~~MMm_
|
||||||
|
~MMy _ww0M~ ~MMy
|
||||||
|
~MMMM~ o "MM
|
||||||
|
${c3} jw0M~~MMMw_ _wMM'
|
||||||
|
wMM~ ~~MMmw__ __w0M~
|
||||||
|
~ ~~MM0MmwwwwwwwwwMMM~
|
||||||
|
~~~~^^~~~
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
cyberos = AsciiArt(match=r'''"CyberOS"*''', color='50 32 57', ascii=r"""
|
||||||
|
${c3} !M$EEEEEEEEEEEP
|
||||||
|
.MMMMM000000Nr.
|
||||||
|
${c3}&MMMMMM${c2}MMMMMMMMMMMMM9
|
||||||
|
${c3}~MMM${c1}MMMM${c2}MMMMMMMMMMMMC
|
||||||
|
${c1}" ${c3}M${c1}MMMMMMM${c2}MMMMMMMMMMs
|
||||||
|
${c1}iM${c2}MMM&&${c1}MMMMMMMM${c2}MMMMMMMM\\
|
||||||
|
${c1}BMMM${c2}MMMMM${c1}MMMMMMM${c2}MMMMMM${c3}"
|
||||||
|
${c1}9MMMMM${c2}MMMMMMM${c1}MMMM${c2}MMMM${c3}MMMf-
|
||||||
|
${c2}sMMMMMMMM${c1}MM${c2}M${c3}MMMMMMMMM3_
|
||||||
|
${c2}+ffffffff${c1}P${c3}MMMMMMMMMMMM0
|
||||||
|
${c2}CMMMMMMMMMMM
|
||||||
|
}MMMMMMMMM
|
||||||
|
~MMMMMMM
|
||||||
|
"RMMMM
|
||||||
|
.PMB
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
dahlia = AsciiArt(match=r'''"dahlia"*''', color='1 7 3', ascii=r"""
|
||||||
|
${c1}
|
||||||
|
.#.
|
||||||
|
*%@@@%*
|
||||||
|
.,,,,,(&@@@@@@@&/,,,,,.
|
||||||
|
,#@@@@@@@@@@@@@@@@@@@@@#.
|
||||||
|
,#@@@@@@@&#///#&@@@@@@@#.
|
||||||
|
,/%&@@@@@%/, .,(%@@@@@&#/.
|
||||||
|
*#&@@@@@@#,. .*#@@@@@@&#,
|
||||||
|
.&@@@@@@@@@( .(@@@@@@@@@&&.
|
||||||
|
#@@@@@@@@@@( )@@@@@@@@@@@#
|
||||||
|
°@@@@@@@@@@( .(@@@@@@@@@@@°
|
||||||
|
*%@@@@@@@(. ,#@@@@@@@%*
|
||||||
|
,(&@@@@@@%*. ./%@@@@@@%(,
|
||||||
|
,#@@@@@@@&(***(&@@@@@@@#.
|
||||||
|
,#@@@@@@@@@@@@@@@@@@@@@#.
|
||||||
|
,*****#&@@@@@@@&(*****,
|
||||||
|
,/%@@@%/.
|
||||||
|
,#,
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
darkos = AsciiArt(match=r'''"DarkOs"''', color='1 6 5 3 2', ascii=r"""
|
||||||
|
|
||||||
|
${c3}⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c1}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣶⠋⡆⢹⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c5}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡆⢀⣤⢛⠛⣠⣿⠀⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c6}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣶⣿⠟⣡⠊⣠⣾⣿⠃⣠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c2}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣯⣿⠀⠊⣤⣿⣿⣿⠃⣴⣧⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c1}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣤⣶⣿⣿⡟⣠⣶⣿⣿⣿⢋⣤⠿⠛⠉⢁⣭⣽⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c4} ⠀⠀⠀⠀⠀⠀ ⠀⣠⠖⡭⢉⣿⣯⣿⣯⣿⣿⣿⣟⣧⠛⢉⣤⣶⣾⣿⣿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c5}⠀⠀⠀⠀⠀⠀⠀⠀⣴⣫⠓⢱⣯⣿⢿⠋⠛⢛⠟⠯⠶⢟⣿⣯⣿⣿⣿⣿⣿⣿⣦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c2}⠀⠀⠀⠀⠀⠀⢀⡮⢁⣴⣿⣿⣿⠖⣠⠐⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠛⠛⠛⢿⣶⣄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c3}⠀⠀⠀⠀⢀⣤⣷⣿⣿⠿⢛⣭⠒⠉⠀⠀⠀⣀⣀⣄⣤⣤⣴⣶⣶⣶⣿⣿⣿⣿⣿⠿⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c1}⠀⢀⣶⠏⠟⠝⠉⢀⣤⣿⣿⣶⣾⣿⣿⣿⣿⣿⣿⣟⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c6}⢴⣯⣤⣶⣿⣿⣿⣿⣿⡿⣿⣯⠉⠉⠉⠉⠀⠀⠀⠈⣿⡀⣟⣿⣿⢿⣿⣿⣿⣿⣿⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c5}⠀⠀⠀⠉⠛⣿⣧⠀⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠃⣿⣿⣯⣿⣦⡀⠀⠉⠻⣿⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c3}⠀⠀⠀⠀⠀⠀⠉⢿⣮⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣿⠀⣯⠉⠉⠛⢿⣿⣷⣄⠀⠈⢻⣆⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c2}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠢⠀⠀⠀⠀⠀⠀⠀⢀⢡⠃⣾⣿⣿⣦⠀⠀⠀⠙⢿⣿⣤⠀⠙⣄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c6}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢋⡟⢠⣿⣿⣿⠋⢿⣄⠀⠀⠀⠈⡄⠙⣶⣈⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
${c1}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠚⢲⣿⠀⣾⣿⣿⠁⠀⠀⠉⢷⡀⠀⠀⣇⠀⠀⠈⠻⡀⠀⠀⠀⠀⠀
|
||||||
|
${c4}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢢⣀⣿⡏⠀⣿⡿⠀⠀⠀⠀⠀⠀⠙⣦⠀⢧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c3}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠿⣧⣾⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣮⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
${c5}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠙⠛⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
darwin = AsciiArt(match=r'''"Darwin"''', color='2 3 1 1 5 4', ascii=r"""
|
||||||
|
${c1} c.'
|
||||||
|
,xNMM.
|
||||||
|
.OMMMMo
|
||||||
|
lMMM"
|
||||||
|
.;loddo:. .olloddol;.
|
||||||
|
cKMMMMMMMMMMNWMMMMMMMMMM0:
|
||||||
|
${c2} .KMMMMMMMMMMMMMMMMMMMMMMMWd.
|
||||||
|
XMMMMMMMMMMMMMMMMMMMMMMMX.
|
||||||
|
${c3};MMMMMMMMMMMMMMMMMMMMMMMM:
|
||||||
|
:MMMMMMMMMMMMMMMMMMMMMMMM:
|
||||||
|
${c4}.MMMMMMMMMMMMMMMMMMMMMMMMX.
|
||||||
|
kMMMMMMMMMMMMMMMMMMMMMMMMWd.
|
||||||
|
${c5}'XMMMMMMMMMMMMMMMMMMMMMMMMMMk
|
||||||
|
'XMMMMMMMMMMMMMMMMMMMMMMMMK.
|
||||||
|
${c6}kMMMMMMMMMMMMMMMMMMMMMMd
|
||||||
|
;KMMMMMMMWXXWMMMMMMMk.
|
||||||
|
"cooc*" "*coo'"
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
debian = AsciiArt(match=r'''"Debian"*''', color='1 7 3', ascii=r"""
|
||||||
|
${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._
|
||||||
|
`\"""
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
debian_small = AsciiArt(match=r'''"debian_small"''', color='1 7 3', ascii=r"""
|
||||||
|
${c1} _____
|
||||||
|
/ __ \\
|
||||||
|
| / |
|
||||||
|
| \\___-
|
||||||
|
-_
|
||||||
|
--_
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
deepin = AsciiArt(match=r'''"Deepin"*''', color='2 7', ascii=r"""
|
||||||
|
${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:,.
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
desaos = AsciiArt(match=r'''"DesaOS"''', color='2 7', ascii=r"""
|
||||||
|
${c1}███████████████████████
|
||||||
|
███████████████████████
|
||||||
|
███████████████████████
|
||||||
|
███████████████████████
|
||||||
|
████████ ███████
|
||||||
|
████████ ███████
|
||||||
|
████████ ███████
|
||||||
|
████████ ███████
|
||||||
|
████████ ███████
|
||||||
|
████████ ███████
|
||||||
|
████████ ███████
|
||||||
|
██████████████████████████████
|
||||||
|
██████████████████████████████
|
||||||
|
████████████████████████
|
||||||
|
████████████████████████
|
||||||
|
████████████████████████
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
devuan = AsciiArt(match=r'''"Devuan"*''', color='5 7', ascii=r"""
|
||||||
|
${c1} ..,,;;;::;,..
|
||||||
|
`':ddd;:,.
|
||||||
|
`'dPPd:,.
|
||||||
|
`:b$$b`.
|
||||||
|
'P$$$d`
|
||||||
|
.$$$$$`
|
||||||
|
;$$$$$P
|
||||||
|
.:P$$$$$$`
|
||||||
|
.,:b$$$$$$$;'
|
||||||
|
.,:dP$$$$$$$$b:'
|
||||||
|
.,:;db$$$$$$$$$$Pd'`
|
||||||
|
,db$$$$$$$$$$$$$$b:'`
|
||||||
|
:$$$$$$$$$$$$b:'`
|
||||||
|
`$$$$$bd:''`
|
||||||
|
`'''`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
dracos = AsciiArt(match=r'''"DracOS"*''', color='1 7 3', ascii=r"""
|
||||||
|
${c1} `-:/-
|
||||||
|
-os:
|
||||||
|
-os/`
|
||||||
|
:sy+-`
|
||||||
|
`/yyyy+.
|
||||||
|
`+yyyyo-
|
||||||
|
`/yyyys:
|
||||||
|
`:osssoooo++- +yyyyyy/`
|
||||||
|
./yyyyyyo yo`:syyyy+.
|
||||||
|
-oyyy+ +- :yyyyyo-
|
||||||
|
`:sy: `. `/yyyyys:
|
||||||
|
./o/.` .oyyso+oo:`
|
||||||
|
:+oo+//::::///:-.` `.`
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
dragonfly = AsciiArt(match=r'''"DragonFly"*''', color='1 7 3', ascii=r"""
|
||||||
|
${c2},--, ${c1}| ${c2},--,
|
||||||
|
${c2}| `-, ${c1},^, ${c2},-' |
|
||||||
|
${c2} `, `-, ${c3}(/ \) ${c2},-' ,'
|
||||||
|
${c2} `-, `-,${c1}/ \${c2},-' ,-'
|
||||||
|
${c2} `------${c1}( )${c2}------'
|
||||||
|
${c2} ,----------${c1}( )${c2}----------,
|
||||||
|
${c2} | _,-${c1}( )${c2}-,_ |
|
||||||
|
${c2} `-,__,-' ${c1}\ /${c2} `-,__,-'
|
||||||
|
${c1} | |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
`|'
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
dragonfly_old = AsciiArt(match=r'''"dragonfly_old"*''', color='1 7 3', ascii=r"""
|
||||||
|
${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} /=\\
|
||||||
|
\\=/
|
||||||
|
^
|
||||||
|
""")
|
||||||
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
from hyfetch.distro import AsciiArt
|
||||||
|
|
||||||
|
dragonfly_small = AsciiArt(match=r'''"dragonfly_small"*''', color='1 7 3', ascii=r"""
|
||||||
|
${c2} ,${c1}_${c2},
|
||||||
|
('-_${c1}|${c2}_-')
|
||||||
|
>--${c1}|${c2}--<
|
||||||
|
(_-'${c1}|${c2}'-_)
|
||||||
|
${c1}|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
""")
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user