We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 140fa8e + 4232cf4 commit ca2c4c0Copy full SHA for ca2c4c0
1 file changed
LTS.py
@@ -1416,11 +1416,13 @@ def main():
1416
clear_screen()
1417
prints("欢迎使用 TouchFish 聊天室!", "yellow")
1418
prints("当前程序版本:{}".format(VERSION), "yellow")
1419
- prints("15 秒后将根据配置文件 config.json 中的配置自动启动。", "yellow")
1420
- prints("按下 Ctrl + C 以切换到手动启动模式。", "yellow")
+ prints("5 秒后将会自动按上次的配置启动。", "yellow")
+ prints("按下 Ctrl + C 以指定启动配置。", "yellow")
1421
auto_start = True
1422
try:
1423
- time.sleep(15)
+ for i in range(5, 0, -1):
1424
+ prints("剩余 "+str(i)+" 秒...", "yellow")
1425
+ time.sleep(1)
1426
except KeyboardInterrupt:
1427
auto_start = False
1428
except:
0 commit comments