added a dedicated pager library

This commit is contained in:
Luxferre
2025-12-21 14:10:21 +02:00
parent 1a340ca82b
commit 1f9365429e
+1 -1
View File
@@ -7,7 +7,7 @@ from deck.input import input
# detect terminal size
TERM_ROWS = os.getenv('TERM_ROWS', 24)
TERM_COLS = os.getenv('TERM_COLS', 80)
TERM_COLS = os.getenv('TERM_COLS', 53)
try: # if running on CPython
TERM_COLS, TERM_ROWS = os.get_terminal_size()
except: