Ever thought an Electron based teleprompting software consumes way too many resources for your needs? SSH into Teleprompter for Terminals, a teleprompting solution with no dependencies on X.
Demo video: https://www.youtube.com/watch?v=qyKezSfxEHo
Telnet link: telnet://imaginary.tech
- Load the program from your terminal.
- Type the text you wish to prompt.
- Press Ctrl-G to prompt.
- Use W to decrease the speed and S to increase the speed.
Install an xinetd daemon and telnetd, put this in /etc/xinetd.d/telnet
and restart xinetd.
# default: on
# description: The telnet server serves telnet sessions; it uses
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = userwithnoprivileges
server = /usr/sbin/in.telnetd
server_args = -h -L /path/to/teleprompter-for-terminals.py
log_on_failure += USERID
cps = 10 30
instances = 200
}
Teleprompter for Terminals is written in Python 3 and depends on the curses library.