forked from endorphant/ttbp
parent
b04d1a4378
commit
36e1102720
|
@ -239,10 +239,12 @@ def print_menu(menu):
|
||||||
i = 0
|
i = 0
|
||||||
for x in menu:
|
for x in menu:
|
||||||
line = []
|
line = []
|
||||||
|
line.append(util.attach_rainbow())
|
||||||
line.append("\t[ ")
|
line.append("\t[ ")
|
||||||
if i < 10:
|
if i < 10:
|
||||||
line.append(" ")
|
line.append(" ")
|
||||||
line.append(str(i)+" ] "+x)
|
line.append(str(i)+" ] "+x)
|
||||||
|
line.append(util.attach_reset())
|
||||||
print("".join(line))
|
print("".join(line))
|
||||||
i += 1
|
i += 1
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,6 @@
|
||||||
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
||||||
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
||||||
| |
|
| |
|
||||||
| ver 0.7.0 (almost stable) |
|
| ver 0.7.5 (almost stable) |
|
||||||
| ~endorphant/projects/ttbp/changelog.txt |
|
| ~endorphant/projects/ttbp/changelog.txt |
|
||||||
|__________________________________________________________|
|
|__________________________________________________________|
|
||||||
|
|
|
@ -53,6 +53,7 @@ SUBJECTS = ["help request", "bug report", "feature suggestion", "general comment
|
||||||
def redraw(leftover=""):
|
def redraw(leftover=""):
|
||||||
os.system("clear")
|
os.system("clear")
|
||||||
print(BANNER)
|
print(BANNER)
|
||||||
|
print("DEV NOTE: want to see more color? try ~endorphant/bin/ttbp-beta and let me know what you think!")
|
||||||
print(SPACER)
|
print(SPACER)
|
||||||
if leftover:
|
if leftover:
|
||||||
print("> "+leftover+"\n")
|
print("> "+leftover+"\n")
|
||||||
|
|
Loading…
Reference in New Issue