From b0d4f79820eecafadaffc443df57eb0d18872b9e Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Wed, 14 Sep 2022 23:30:46 +0200 Subject: Added all patterns to the code and made that you could select between them with j and k and animate them with a and stop the animation with s --- presets/parse.py | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100755 presets/parse.py (limited to 'presets/parse.py') diff --git a/presets/parse.py b/presets/parse.py deleted file mode 100755 index fb06bce..0000000 --- a/presets/parse.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python3 - - -with open("/home/pengu/test/rust-dev/gof-rs/presets/patterns-striped.txt", "r") as file: - with open("./new.txt", "w") as newfile: - cnt = 0 - for line in file.readlines(): - if line != '\n': - if cnt > 0: - newfile.write("\n") - if len(line) < 73 and line != '\n': - txt = line.rstrip().center(72, ".") + '\n' - newfile.write(txt) - cnt = 0 - if line == '\n': - cnt += 1 - -- cgit v1.2.3