forked from genewildish/Mainline
32 lines
1.7 KiB
Python
32 lines
1.7 KiB
Python
"""
|
|
Configuration constants, CLI flags, and glyph tables.
|
|
"""
|
|
|
|
import sys
|
|
|
|
# ─── RUNTIME ──────────────────────────────────────────────
|
|
HEADLINE_LIMIT = 1000
|
|
FEED_TIMEOUT = 10
|
|
MIC_THRESHOLD_DB = 50 # dB above which glitches intensify
|
|
MODE = 'poetry' if '--poetry' in sys.argv or '-p' in sys.argv else 'news'
|
|
FIREHOSE = '--firehose' in sys.argv
|
|
|
|
# ─── NTFY MESSAGE QUEUE ──────────────────────────────────
|
|
NTFY_TOPIC = "https://ntfy.sh/klubhaus_terminal_mainline/json?since=20s&poll=1"
|
|
NTFY_POLL_INTERVAL = 15 # seconds between polls
|
|
MESSAGE_DISPLAY_SECS = 30 # how long a message holds the screen
|
|
|
|
# ─── FONT RENDERING ──────────────────────────────────────
|
|
FONT_PATH = "/Users/genejohnson/Documents/CS Bishop Drawn/CSBishopDrawn-Italic.otf"
|
|
FONT_SZ = 60
|
|
RENDER_H = 8 # terminal rows per rendered text line
|
|
|
|
# ─── SCROLL / FRAME ──────────────────────────────────────
|
|
SCROLL_DUR = 3.75 # seconds per headline
|
|
FRAME_DT = 0.05 # 50ms base frame rate (20 FPS)
|
|
FIREHOSE_H = 12 # firehose zone height (terminal rows)
|
|
|
|
# ─── GLYPHS ───────────────────────────────────────────────
|
|
GLITCH = "░▒▓█▌▐╌╍╎╏┃┆┇┊┋"
|
|
KATA = "ハミヒーウシナモニサワツオリアホテマケメエカキムユラセネスタヌヘ"
|