[+] Catch ctrl+c

This commit is contained in:
Azalea 2023-06-01 23:15:26 -07:00
parent a437957702
commit cdbf8a6b24

View file

@ -19,6 +19,8 @@ def start_animation():
text_height = len(text_lines)
text_width = len(text_lines[0])
notice = "Press enter to continue"
speed = 2
frame_delay = 1 / 25
@ -83,12 +85,16 @@ def start_animation():
print(buf, end='', flush=True)
try:
while 1:
# Clear the screen
print("\033[2J\033[H", end="")
draw_frame()
frame += speed
sleep(frame_delay)
except KeyboardInterrupt:
# Clear the screen
print("\033[2J\033[H", end="")
if __name__ == '__main__':