Skip to content

Commit 426b007

Browse files
committed
chore: clean up ASCII art test files, add scroll effect to init banner
Removed iteration/test files from img/. Kept argus_eye_final.txt. Banner now scrolls in line-by-line (30ms/line) on init.
1 parent 738696c commit 426b007

3 files changed

Lines changed: 5 additions & 34 deletions

File tree

argus/init.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,12 @@ def run_init(
6161
root = Path(target_dir)
6262
config_path = root / "argus.yml"
6363

64-
# Show banner on interactive terminals
64+
# Show banner on interactive terminals with scroll effect
6565
if sys.stderr.isatty():
66-
print(_BANNER, file=sys.stderr)
66+
import time
67+
for line in _BANNER.splitlines():
68+
print(line, file=sys.stderr)
69+
time.sleep(0.03)
6770

6871
if config_path.exists() and not force:
6972
print(

img/argus_banner.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

img/argus_banner_ansi.txt

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)