diff --git a/hyfetch/main.py b/hyfetch/main.py index c7105d7d..35c53781 100755 --- a/hyfetch/main.py +++ b/hyfetch/main.py @@ -131,8 +131,8 @@ def create_config() -> Config: flags = flags[flags_per_row:] # Print by row - for line in range(len(current[0])): - printc(' '.join(flag[line] for flag in current)) + for line in zip(*current): + printc(' '.join(line)) print()