UI Cleanup
This commit is contained in:
+9
-4
@@ -121,9 +121,8 @@ def regulator(paths, case_insensitive=True):
|
||||
pattern = "(?i)" + pattern # Add inline case-insensitive flag
|
||||
print(f"Regulator is providing: {pattern}")
|
||||
return pattern
|
||||
|
||||
def displayIntro():
|
||||
print(
|
||||
def irtang():
|
||||
print(
|
||||
colorText(
|
||||
r"""
|
||||
███
|
||||
@@ -152,6 +151,8 @@ def displayIntro():
|
||||
"yellow",
|
||||
)
|
||||
)
|
||||
def displayIntro():
|
||||
|
||||
print(
|
||||
colorText(
|
||||
r"""
|
||||
@@ -618,4 +619,8 @@ def open_directory(path):
|
||||
def print_x_wide(items: list, width: int):
|
||||
for i in range(0, len(items), width):
|
||||
row = items[i:i+width]
|
||||
print(" | ".join(row))
|
||||
print(" | ".join(row))
|
||||
|
||||
|
||||
def clear_screen():
|
||||
os.system('cls' if os.name == 'nt' else 'clear')
|
||||
|
||||
Reference in New Issue
Block a user