180cd6078a
Adds self-hosted, single-realm administrative functions to otouto. Check out the README for a detailed description. Also added msg.from.name, which is msg.from.first_name + msg.from.last_name (if it exists), because I'm too lazy to build it each time. Fixed a crash-causing bug (ironically) in the handle_exception() function.
11 lines
255 B
Bash
Executable File
11 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Launch tg listening on the default port (change this if you've changed it in
|
|
# config.lua), delete state file after stop, wait two seconds, and restart.
|
|
|
|
while true; do
|
|
tg/bin/telegram-cli -P 4567 -E
|
|
rm ~/.telegram-cli/state
|
|
sleep 2s
|
|
done
|