[U] Release 1.4.8
This commit is contained in:
parent
659811a66e
commit
9777652dac
11 changed files with 206 additions and 151 deletions
|
|
@ -1 +1 @@
|
|||
VERSION = '1.4.7'
|
||||
VERSION = '1.4.8'
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
from . import AsciiArt
|
||||
|
||||
archcraft_ascii = AsciiArt(match=r'''"Archcraft"*''', color='6 1 2 3 4 5', ascii=r"""
|
||||
archcraft_ascii = AsciiArt(match=r'''"archcraft_ascii"*''', color='6 1 2 3 4 5', ascii=r"""
|
||||
${c1} -o\
|
||||
:ooo:
|
||||
.ooooo.
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
from . import AsciiArt
|
||||
|
||||
archcraft_minimal = AsciiArt(match=r'''"Archcraft"*''', color='6 1 2 3 4 5', ascii=r"""
|
||||
archcraft_minimal = AsciiArt(match=r'''"archcraft_minimal"*''', color='6 1 2 3 4 5', ascii=r"""
|
||||
${c1} ⢰⡆
|
||||
⢠⣿⣿⡄
|
||||
⢀⣾⣿⣿⣿⡀
|
||||
|
|
|
|||
|
|
@ -107,15 +107,15 @@ def detect(name: str) -> AsciiArt | None:
|
|||
if name.startswith('archcraft_ascii'):
|
||||
from .archcraft_ascii import archcraft_ascii
|
||||
return archcraft_ascii
|
||||
|
||||
|
||||
if name.startswith('archcraft_minimal'):
|
||||
from .archcraft_minimal import archcraft_minimal
|
||||
return archcraft_minimal
|
||||
|
||||
|
||||
if name.startswith('archcraft'):
|
||||
from .archcraft import archcraft
|
||||
return archcraft
|
||||
|
||||
|
||||
if name.startswith('arcolinux_small'):
|
||||
from .arcolinux_small import arcolinux_small
|
||||
return arcolinux_small
|
||||
|
|
@ -928,6 +928,10 @@ def detect(name: str) -> AsciiArt | None:
|
|||
from .pisi import pisi
|
||||
return pisi
|
||||
|
||||
if name.startswith('pikaos'):
|
||||
from .pikaos import pikaos
|
||||
return pikaos
|
||||
|
||||
if name.startswith('pnm linux') or name.startswith('whpnm linux'):
|
||||
from .pnm_linux import pnm_linux
|
||||
return pnm_linux
|
||||
|
|
@ -1076,6 +1080,10 @@ def detect(name: str) -> AsciiArt | None:
|
|||
from .sasanqua import sasanqua
|
||||
return sasanqua
|
||||
|
||||
if name.startswith('salient os') or name.startswith('salientos') or name.startswith('salientos'):
|
||||
from .salient_os import salient_os
|
||||
return salient_os
|
||||
|
||||
if name.startswith('scientific'):
|
||||
from .scientific import scientific
|
||||
return scientific
|
||||
|
|
|
|||
15
hyfetch/distros/pikaos.py
Normal file
15
hyfetch/distros/pikaos.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
pikaos = AsciiArt(match=r'''"PikaOS"*''', color='11', ascii=r"""
|
||||
${c1} /🐦🐦🐦$ /🐦/🐦 /🐦🐦🐦 /🐦🐦🐦
|
||||
| 🐦__ $|__| 🐦 /🐦__ 🐦/🐦__ 🐦
|
||||
| 🐦 \ 🐦/$| 🐦 /🐦 /🐦🐦🐦| 🐦 \ $| 🐦 \__/
|
||||
| 🐦🐦🐦$| $| 🐦 /🐦/|____ $| 🐦 | $| 🐦🐦🐦
|
||||
| 🐦____/| $| 🐦🐦🐦/ /🐦🐦🐦| 🐦 | 🐦\____ 🐦
|
||||
| 🐦 | $| 🐦_ 🐦 /🐦__ $| 🐦 | 🐦/🐦 \ 🐦
|
||||
| 🐦 | $| 🐦 \ $| 🐦🐦🐦| 🐦🐦🐦| 🐦🐦🐦/
|
||||
|__/ |__|__/ \__/\_______/\______/ \______/ .
|
||||
""")
|
||||
|
||||
27
hyfetch/distros/salient_os.py
Normal file
27
hyfetch/distros/salient_os.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
salient_os = AsciiArt(match=r'''"Salient OS"* | "SalientOS"* | "salientos"*''', color='6 6 7 1', ascii=r"""
|
||||
${c1} 00xxxx0
|
||||
00xxxxxx0
|
||||
0xxxxxxxxx 000000
|
||||
0xxxxxxxxxx xxxxxxxxxx0
|
||||
0xxxxxxxxxxx0 xxxxxxxxxxxxx0
|
||||
0xxxxxxxxxxxx0 0xxxxxxxxxxxxxx0
|
||||
0xxxxxxxxxxxxx0 0xxxxxxxxxxxxxxx0
|
||||
0xxxxxxxxxxxxxxx xxxxxxxxxxxxxxxx0
|
||||
xxxxxxxxxxxxxxxx0 0xxxxxxxxxxxxxxxx
|
||||
xxxxxxxxxxxxxxxxx 0xxxxxxxxxxxxxxx
|
||||
xxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxx
|
||||
xxxxxxxxxxxxxxxxxx0 xxxxxxxxxxxxxx
|
||||
0xxxxxxxxxxxxxxxxxx0 0xxxxxxxxxxxx0
|
||||
0xxxxxxxxxxxxxxxxxx xxxxxxxxxxx0
|
||||
0xxxxxxxxxxxxxxxxx xxxxxxxxxx0
|
||||
0xxxxxxxxxxxxxxxx xxxxxxxxx0
|
||||
0xxxxxxxxxxxx0 0xxxxxxx0
|
||||
0xxxxxxx0 xxxxxx0
|
||||
0xxx00
|
||||
x00
|
||||
""")
|
||||
|
||||
|
|
@ -4,22 +4,24 @@ from . import AsciiArt
|
|||
|
||||
vanilla = AsciiArt(match=r'''"Vanilla"*''', color='11 15', ascii=r"""
|
||||
${c1}
|
||||
.----:
|
||||
.-------.
|
||||
:---::----:
|
||||
.----::-----.
|
||||
......... :----::-----: ..:::-::::..
|
||||
.-----------------::------------------:
|
||||
----::-----------::----------::::---:
|
||||
-----:::--------::-------:::-------
|
||||
:------::::--::...:::::---------:
|
||||
.---------::.. ..:---------.
|
||||
.::-----::.. .::----::.
|
||||
.:------:.......:-------:
|
||||
.--------::::::::-:::-------.
|
||||
.-------::-----.:-----::------.
|
||||
-----::------: :------::-----
|
||||
:--::--------: .-------::---:
|
||||
:----------:: .:----------
|
||||
|
||||
.OO.
|
||||
.OOOO.
|
||||
.OO${c2}II${c1}OO.
|
||||
IOOO${c2}II${c1}OOOI
|
||||
.OOOO${c2}II${c1}OOOO.
|
||||
............IOOOO${c2}II${c1}OOOOI............
|
||||
OOOOOOOOOOOOOOOOOO${c2}II${c1}OOOOOOOOOOOOOOOOOO
|
||||
OOOO${c2}II${c1}OOOOOOOOOOO${c2}II${c1}OOOOOOOOOOO${c2}II${c1}OOOO
|
||||
OOOOO${c2}III${c1}OOOOOOOO${c2}II${c1}OOOOOOOO${c2}III${c1}OOOOO
|
||||
OOOOOOO${c2}IIII${c1}OO${c2}I....I${c1}OO${c2}IIII${c1}OOOOOOO
|
||||
OOOOOOOOOO${c2}II.. ..II${c1}OOOOOOOOOO
|
||||
OOOOOOO${c2}II. .II${c1}OOOOOOO
|
||||
OOOOOO${c2}II:......:II${c1}OOOOOO
|
||||
OOOOOOOOO${c2}IIIIIIII${c1}OOOOOOOOO
|
||||
OOOOOO${c2}II${c1}OOOOOOOOOOOO${c2}II${c1}OOOOOO
|
||||
OOOO${c2}II${c1}OOOOOOOI IOOOOOO${c2}II${c1}OOOO
|
||||
IOO${c2}II${c1}OOOOOOOO: :OOOOOOOO${c2}II${c1}OOI
|
||||
IOOOOOOOOOOII IIOOOOOOOOOOI
|
||||
""")
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue