From 46d38d4851b3e447d87411cf20c7833efc8eea04 Mon Sep 17 00:00:00 2001 From: FurretDev Date: Fri, 17 May 2024 20:06:33 +0200 Subject: [PATCH] properly added furreto --- hyfetch/distros/distro_detector.py | 6 +++++- hyfetch/distros/furreto.py | 31 ++++++++++++++++++++++++++++++ hyfetch/distros/linux.py | 1 - 3 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 hyfetch/distros/furreto.py diff --git a/hyfetch/distros/distro_detector.py b/hyfetch/distros/distro_detector.py index 74dbe403..bc9a85a4 100644 --- a/hyfetch/distros/distro_detector.py +++ b/hyfetch/distros/distro_detector.py @@ -123,6 +123,10 @@ def detect(name: str) -> AsciiArt | None: if name.startswith('arcolinux'): from .arcolinux import arcolinux return arcolinux + + if name.startswith('furreto'): + from .furreto import furreto + return furreto if name == 'arch_small': from .arch_small import arch_small @@ -1499,4 +1503,4 @@ def detect(name: str) -> AsciiArt | None: if name == 'sunos': from .sunos import sunos return sunos - \ No newline at end of file + diff --git a/hyfetch/distros/furreto.py b/hyfetch/distros/furreto.py new file mode 100644 index 00000000..6b6856bc --- /dev/null +++ b/hyfetch/distros/furreto.py @@ -0,0 +1,31 @@ +# This file is automatically generated. Please do not modify. + +from . import AsciiArt + +furreto = AsciiArt(match=r'''"furreto"*''', color='211 255 225 199', ascii=r""" +${c1} + ${c1}.xOOko .odd, + o${c3}X${c2}WWK${c3}O${c1}OOO. 'O${c3}N${c2}WW${c3}0${c1}kkk. + .k0${c3}XKO${c1}OOOOOcOO${c2}NWN${c1}OOOOO. + xOOOOOOOOOkkOOOOOOOOO; + .O0OkkocxO000000kcdk0OO0OOkx + k${c3}W${c2}MX${c1}kkkkloxkkkx; :dxxxxddc... + 'kO0OOOOOkc .cl:..kk0KK0Okc + ;kOOO0000xd. dO00000Oo .xkO${c3}N${c2}MM${c3}X${c1}OOOO + .dddxkOOOkddc.k${c3}K${c2}NWW${c3}N${c1}000000l.ddk${c2}00${c1}00OOOO. + 'dd:;ddddd;.d${c3}K${c2}MMM${c3}W${c1}K00KKK0O::ddxkO00Oko + .okxkOKK0kkOO00KKOxxlodddddddl + .00OOkkkkkkkkOOO00OOOO0O; .dddl + 'kkkkkxxkkkkkkkOOkxdxkxxddd. + cddddddddxxkkkkk${c4}xddddddddddo + 'ddddddodddddddddddddddddddc + .ddddddodddddddddodddddddc + .odddo. + + .kOOkkk; + lkKWNkkkxc + kkxkkkkkkx. + ,,..xxx. + +""") + diff --git a/hyfetch/distros/linux.py b/hyfetch/distros/linux.py index ff34828d..5bcead07 100644 --- a/hyfetch/distros/linux.py +++ b/hyfetch/distros/linux.py @@ -16,4 +16,3 @@ ${c3}######${c2}#${c1}#######${c2}#${c3}###### ${c3}#######${c2}#${c1}#####${c2}#${c3}####### ${c3} #####${c2}#######${c3}##### """) - \ No newline at end of file