[U] Release 1.4.6
This commit is contained in:
parent
8ee516e640
commit
2fda114552
8 changed files with 151 additions and 124 deletions
|
|
@ -6,7 +6,7 @@ from pathlib import Path
|
|||
from .types import LightDark
|
||||
|
||||
CONFIG_PATH = Path.home() / '.config/hyfetch.json'
|
||||
VERSION = '1.4.5'
|
||||
VERSION = '1.4.6'
|
||||
|
||||
|
||||
TEST_ASCII = r"""
|
||||
|
|
|
|||
|
|
@ -23,4 +23,4 @@ ${c1} .,-:;//;:=,
|
|||
,:+$+-,/H#MMMMMMM@= =,
|
||||
=++%%%%+/:-.
|
||||
""")
|
||||
|
||||
|
||||
|
|
@ -17,6 +17,10 @@ def detect(name: str) -> AsciiArt | None:
|
|||
from .aperio_gnu_linux import aperio_gnu_linux
|
||||
return aperio_gnu_linux
|
||||
|
||||
if name.startswith('aperture'):
|
||||
from .aperture import aperture
|
||||
return aperture
|
||||
|
||||
if name.startswith('asahi'):
|
||||
from .asahi import asahi
|
||||
return asahi
|
||||
|
|
@ -1017,6 +1021,10 @@ def detect(name: str) -> AsciiArt | None:
|
|||
from .regolith import regolith
|
||||
return regolith
|
||||
|
||||
if name.startswith('rhaymos'):
|
||||
from .rhaymos import rhaymos
|
||||
return rhaymos
|
||||
|
||||
if name.startswith('rocky_small'):
|
||||
from .rocky_small import rocky_small
|
||||
return rocky_small
|
||||
|
|
@ -1336,8 +1344,4 @@ def detect(name: str) -> AsciiArt | None:
|
|||
if name == 'sunos':
|
||||
from .sunos import sunos
|
||||
return sunos
|
||||
|
||||
if name == 'aperture':
|
||||
from .aperture import aperture
|
||||
return aperture
|
||||
|
||||
|
||||
21
hyfetch/distros/rhaymos.py
Normal file
21
hyfetch/distros/rhaymos.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
from . import AsciiArt
|
||||
|
||||
rhaymos = AsciiArt(match=r'''"RhaymOS"*''', color='1', ascii=r"""
|
||||
${c1}
|
||||
###
|
||||
#####
|
||||
|
||||
####### /########
|
||||
############# ###########
|
||||
,########### #### ####(..
|
||||
#### #### ####* ##########
|
||||
#### ##### ##### (####
|
||||
#### ########### ###########
|
||||
#### ######### ##########
|
||||
|
||||
###################################
|
||||
#####################################
|
||||
#######################################
|
||||
""")
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue