diff --git a/banter.py b/banter.py index f37e35d..89325ef 100755 --- a/banter.py +++ b/banter.py @@ -1,7 +1,8 @@ #!/bin/sh ''''exec /usr/bin/env python3 -u "$0" $@ #''' - __doc__ = 'little script to make irc color art that will probably get you banned' +# whee, look at this sus shebang workaround to always cause +# unbuffered mode lol import sys,time from PIL import Image @@ -22,6 +23,8 @@ ipix = width // ASCIIWIDTH # // instead of / to devide with a round number asciiHeight = height // ipix // 2 +currentPixel = 0 + for y in range(asciiHeight): line = [] lastColor=69420 @@ -32,8 +35,9 @@ for y in range(asciiHeight): colorcode = '' else: colorcode =COLORCHAR.format(color, color) - line.append(colorcode+FILLER) + line.append(colorcode+(FILLER[currentPixel % len(FILLER)])) lastColor=color + currentPixel+=1 print(''.join(line)) if len(sys.argv) > 2: