From 7fc0985be42c16570a6aee80fd186f295ab5777a Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Sun, 31 Aug 2025 20:02:54 +0800 Subject: [PATCH] =?UTF-8?q?style(installer):=20=E4=BF=AE=E6=94=B9=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E7=A8=8B=E5=BA=8F=E6=8F=90=E7=A4=BA=E7=AC=A6=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将安装程序的输入提示符从"$ "改为"$ installer >>> ",使其更清晰表明当前处于安装程序上下文 --- installer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.lua b/installer.lua index 94623cb..4ac26ba 100644 --- a/installer.lua +++ b/installer.lua @@ -64,7 +64,7 @@ tu.coloredPrint(colors.yellow, local ROM_DIR tu.coloredPrint("Enter installation directory ", colors.yellow, "[", colors.lightBlue, DEFAULT_ROM_DIR, colors.yellow, "]") -tu.coloredWrite(colors.yellow, "$ ") +tu.coloredWrite(colors.yellow, "$ installer >>> ") ROM_DIR = read() if #ROM_DIR == 0 then ROM_DIR = DEFAULT_ROM_DIR end