Skip to content

Commit

Permalink
Revert auto-generated files
Browse files Browse the repository at this point in the history
Signed-off-by: Bailey Kasin <[email protected]>
  • Loading branch information
Bailey Kasin committed May 19, 2024
1 parent c2a26cf commit 07da5d5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 38 deletions.
22 changes: 15 additions & 7 deletions hyfetch/distros/distro_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ def detect(name: str) -> AsciiArt | None:
return None
name = name.lower()
if name.startswith('adélie') or name.startswith('adelie'):
from .adélie import adélie
return adélie
from .adelie import adelie
return adelie

if name.startswith('aix'):
from .aix import aix
Expand Down Expand Up @@ -123,10 +123,6 @@ 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
Expand Down Expand Up @@ -308,6 +304,10 @@ def detect(name: str) -> AsciiArt | None:
from .chapeau import chapeau
return chapeau

if name.startswith('chimera'):
from .chimera import chimera
return chimera

if name.startswith('chonkysealos'):
from .chonkysealos import chonkysealos
return chonkysealos
Expand Down Expand Up @@ -480,6 +480,10 @@ def detect(name: str) -> AsciiArt | None:
from .evolutionos import evolutionos
return evolutionos

if name.startswith('eweos'):
from .eweos import eweos
return eweos

if name.startswith('exherbo'):
from .exherbo import exherbo
return exherbo
Expand Down Expand Up @@ -1476,6 +1480,10 @@ def detect(name: str) -> AsciiArt | None:
from .xenia import xenia
return xenia

if name.startswith('tatra'):
from .tatra import tatra
return tatra

if name.startswith('zorin'):
from .zorin import zorin
return zorin
Expand Down Expand Up @@ -1503,4 +1511,4 @@ def detect(name: str) -> AsciiArt | None:
if name == 'sunos':
from .sunos import sunos
return sunos


1 change: 1 addition & 0 deletions hyfetch/distros/femboyos.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@
MMMMMMMMMMMMMWNWMMMWWNNNWMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
""")

31 changes: 0 additions & 31 deletions hyfetch/distros/furreto.py

This file was deleted.

1 change: 1 addition & 0 deletions hyfetch/distros/linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@
${c3}#######${c2}#${c1}#####${c2}#${c3}#######
${c3} #####${c2}#######${c3}#####
""")

0 comments on commit 07da5d5

Please sign in to comment.