1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-24 15:59:42 +02:00

work in progress

This commit is contained in:
dbarzin 2022-06-12 00:26:34 +02:00
parent 8191e075cf
commit 6c831b1e01
3 changed files with 138 additions and 48 deletions

View file

@ -14,11 +14,9 @@ def initBar():
def updateBar(progress):
global progress_win
rangex = (60 / float(100)) * progress
pos = int(rangex)
display = "#"
if pos != 0:
progress_win.addstr(1, pos, "{}".format(display))
pos = (60 * progress) // 100
if pos != 0 :
progress_win.addstr(1, pos, "{}".format("#"))
progress_win.refresh()
@ -31,5 +29,5 @@ while loading < 100:
time.sleep(1)
curses.endwin()
#curses.endwin()
curses.flushinp()