Compare commits
48 Commits
neofetch-7.3.6
...
1.4.7
| Author | SHA1 | Date | |
|---|---|---|---|
| 48d7772b7f | |||
| 664de7810d | |||
| fa4749cc21 | |||
| b8091f4a79 | |||
| de50bfdbeb | |||
| cbd3ef92d4 | |||
| 92b79b704e | |||
| 13d47b1687 | |||
| a35b03865f | |||
| 8e753e5f42 | |||
| 037a1a58ca | |||
| 4f955dc0b9 | |||
| 971c3b8284 | |||
| 6a44c6b441 | |||
| 731d9a96d9 | |||
| 61c4cf5b35 | |||
| ecde2776b0 | |||
| 3834122a37 | |||
| 928dfd713c | |||
| 049f259227 | |||
| a87e2267ea | |||
| be475f0211 | |||
| db69285ec1 | |||
| ecbc5ceed3 | |||
| dddc2d15d0 | |||
| 2860c1efd6 | |||
| 6302ccbfdf | |||
| bfeac2203c | |||
| 99511a4863 | |||
| fec5ebe628 | |||
| 96a48659e5 | |||
| 6f0e659d90 | |||
| 089f669e6a | |||
| 212ac1a3df | |||
| b9eeb068fa | |||
| 026cfffde1 | |||
| 0bf0473b90 | |||
| 7034721435 | |||
| 62486ca5ef | |||
| b366211d70 | |||
| e8f8968e4a | |||
| 1c45b42058 | |||
| a2ba1c9ca2 | |||
| a93d17705b | |||
| 1369828e3e | |||
| 586c652eab | |||
| 5a212e38ce | |||
| d9d36690f9 |
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Python: Module",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"module": "hyfetch",
|
||||
"justMyCode": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -99,6 +99,20 @@ pip install git+https://github.com/hykilpikonna/hyfetch.git@master
|
||||
|
||||
<!-- CHANGELOG STARTS HERE --->
|
||||
|
||||
### 1.4.7
|
||||
|
||||
* 🌈 Better Windows compatibility (#45, #84, #87, #89)
|
||||
* 🌈 Add gendervoid flags (#81)
|
||||
* 🌈 Fix ASCII extractor escape sequence generation (#90, #91)
|
||||
* 🖼 Distro - Add CuteOS ([dylanaraps#2291](https://github.com/dylanaraps/neofetch/pull/2291))
|
||||
* 🖼 Distro - Add Floflis ([dylanaraps#2289](https://github.com/dylanaraps/neofetch/pull/2289))
|
||||
* 🖼 Distro - Add ArseLinux ([dylanaraps#2295](https://github.com/dylanaraps/neofetch/pull/2295))
|
||||
* 🖼 Distro - Better Solaris support ([dylanaraps#2293](https://github.com/dylanaraps/neofetch/pull/2293))
|
||||
* 🖼 Packages - Fix scoop package manager for Windows (#93)
|
||||
* 🖼 Packages - Add Evox package manager for Stock Linux (#95)
|
||||
* 🖼 WM - Fix false positive wm process name detection (#88, #94)
|
||||
* 🖼 Misc - Added BIOS and bluetooth detection
|
||||
|
||||
### 1.4.6
|
||||
|
||||
* 🌈 Add compatibility for FastFetch version `>1.8.0` (#62)
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import platform
|
||||
from dataclasses import dataclass
|
||||
from pathlib import Path
|
||||
|
||||
from .types import LightDark
|
||||
|
||||
CONFIG_PATH = Path.home() / '.config/hyfetch.json'
|
||||
VERSION = '1.4.6'
|
||||
VERSION = '1.4.7'
|
||||
|
||||
|
||||
TEST_ASCII = r"""
|
||||
@@ -25,7 +26,7 @@ _/\_\_ _/_/\_
|
||||
|
||||
TEST_ASCII_WIDTH = max(len(line) for line in TEST_ASCII.split('\n'))
|
||||
DEFAULT_DARK_L = 0.
|
||||
|
||||
IS_WINDOWS = platform.system() == 'Windows'
|
||||
|
||||
@dataclass
|
||||
class GlobalConfig:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
arselinux = AsciiArt(match=r'''"ArseLinux"*''', color='4 7', ascii=r"""
|
||||
${c1}
|
||||
⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⣶⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠀⠀⠀⠀⠀⠀⣴⣶⠀⠀⠀⠀⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣄⠀⠀⠀⠀⣼⠟⠁⠀⠀⢀⣀⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡀⠀⢀⣤⡀⠀⠀⠀⠉⢻⣷⡄⠀⠀⠁⠀⢀⣤⣾⡿⠟⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣷⣿⠏⠀⠀⠀⠀⠀⠀⠹⣿⡄⠀⠀⠀⠙⠉⠁⠀⠀⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⡄⠀⠀⠀⠀⠀⠀⠀⢹⣿⠀⠀⠀⠀⠠⣶⣶⣶⡶
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⠀⠀⠀⠀⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠀⠀⠀⠀⠀⠀⠀⢠⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠂⠀⠀⠀⠀⠀⢀⣾⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠇⠀⠀⠀⠀⠀⣠⣾⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⣿⣇⣀⣀⣀⣠⣴⣾⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⢸⣿⠀⠀⠀⠀⠀⣤⣤⣴⣶⣾⠿⠟⣿⡏⠙⠛⠛⠛⠋⠉⢀⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⣿⡄⠀⠀⠀⠀⠈⠉⠉⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀⠀⢸⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⠇⠀⠀⠀⠀⠀⠀⠘⠿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||
""")
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
|
||||
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}..........................
|
||||
""")
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
cuteos = AsciiArt(match=r'''"CuteOS"*''', color='33 50 57', ascii=r"""
|
||||
${c2}
|
||||
${c3}1ua${c2}
|
||||
${c3}MMM1ua${c2}
|
||||
${c1}MM${c2}EE ${c3} MMMMM1uazE${c2}
|
||||
${c1}MM ${c2}EEEE ${c3}M1MM1uazzEn ${c2}EEEE MME
|
||||
EEEEE ${c3}MMM uazEno ${c2}EEEE
|
||||
EEEEE${c1}MMMMMMEno~; ${c2}EE E${c2}
|
||||
EE ${c1}MMMMMMMM~;;E ${c2}MMMMM M ${c2}
|
||||
E ${c1}MMMMMMMMM ${c2} E E ${c2}
|
||||
${c1}MMMMMMMMMMM
|
||||
${c1}MMMMMMMMM ${c2}EE ${c1}
|
||||
MM1MMMM ${c2}EEE ${c1}
|
||||
MMMMM
|
||||
MMM
|
||||
M
|
||||
""")
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
debian = AsciiArt(match=r'''"Debian"*''', color='1 7 3', ascii=r"""
|
||||
${c2} _,met$$$$$gg.
|
||||
,g$$$$$$$$$$$$$$$P.
|
||||
,g$$P" \"""Y$$.".
|
||||
,g$$P" "\""Y$$.".
|
||||
,$$P' `$$$.
|
||||
',$$P ,ggs. `$$b:
|
||||
`d$$' ,$P"' ${c1}.${c2} $$$
|
||||
@@ -18,6 +19,6 @@ ${c2} `Y$$
|
||||
`$$b.
|
||||
`Y$$b.
|
||||
`"Y$b._
|
||||
`\"""
|
||||
`"\""
|
||||
""")
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from __future__ import annotations
|
||||
@@ -73,6 +72,10 @@ def detect(name: str) -> AsciiArt | None:
|
||||
from .android import android
|
||||
return android
|
||||
|
||||
if name.startswith('arselinux'):
|
||||
from .arselinux import arselinux
|
||||
return arselinux
|
||||
|
||||
if name.startswith('instantos'):
|
||||
from .instantos import instantos
|
||||
return instantos
|
||||
@@ -337,6 +340,10 @@ def detect(name: str) -> AsciiArt | None:
|
||||
from .cutefishos import cutefishos
|
||||
return cutefishos
|
||||
|
||||
if name.startswith('cuteos'):
|
||||
from .cuteos import cuteos
|
||||
return cuteos
|
||||
|
||||
if name.startswith('cyberos'):
|
||||
from .cyberos import cyberos
|
||||
return cyberos
|
||||
@@ -1221,6 +1228,10 @@ def detect(name: str) -> AsciiArt | None:
|
||||
from .ubuntu_old import ubuntu_old
|
||||
return ubuntu_old
|
||||
|
||||
if name.startswith('floflis'):
|
||||
from .floflis import floflis
|
||||
return floflis
|
||||
|
||||
if name.startswith('ubuntu'):
|
||||
from .ubuntu import ubuntu
|
||||
return ubuntu
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# This file is automatically generated. Please do not modify.
|
||||
|
||||
from . import AsciiArt
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user