From bfb4d5b3d04f474f6e414d46e532335812ff3156 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Wed, 25 Mar 2026 14:37:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=E8=84=9A=E6=9C=AC=E7=A7=BB=E8=87=B3?= =?UTF-8?q?=20scripts/=20=E7=9B=AE=E5=BD=95=EF=BC=8C=E4=BF=9D=E6=8C=81?= =?UTF-8?q?=E4=BB=93=E5=BA=93=E6=A0=B9=E7=9B=AE=E5=BD=95=E6=95=B4=E6=B4=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- install.sh => scripts/install.sh | 0 root-setup.sh => scripts/root-setup.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename install.sh => scripts/install.sh (100%) rename root-setup.sh => scripts/root-setup.sh (93%) diff --git a/README.md b/README.md index eabb7b3..a07ca3f 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ### 1. 初始化用户(以 root 身份,仅 WSL 首次) ```bash -curl -fsSL https://git.furtherverse.com/imbytecat/archlinux-config/raw/branch/main/root-setup.sh | bash -s -- <用户名> +curl -fsSL https://git.furtherverse.com/imbytecat/archlinux-config/raw/branch/main/scripts/root-setup.sh | bash -s -- <用户名> ``` 然后在 PowerShell 中重启 WSL: @@ -19,7 +19,7 @@ wsl --terminate archlinux ### 2. 安装配置(以普通用户身份) ```bash -curl -fsSL https://git.furtherverse.com/imbytecat/archlinux-config/raw/branch/main/install.sh | bash +curl -fsSL https://git.furtherverse.com/imbytecat/archlinux-config/raw/branch/main/scripts/install.sh | bash ``` ### 3. 应用配置 diff --git a/install.sh b/scripts/install.sh similarity index 100% rename from install.sh rename to scripts/install.sh diff --git a/root-setup.sh b/scripts/root-setup.sh similarity index 93% rename from root-setup.sh rename to scripts/root-setup.sh index a63ea06..6652334 100755 --- a/root-setup.sh +++ b/scripts/root-setup.sh @@ -37,4 +37,4 @@ echo "" echo "下一步:" echo " 1. 在 PowerShell 中执行: wsl --terminate archlinux" echo " 2. 重新打开 Arch WSL(将以 $USERNAME 身份登录)" -echo " 3. 运行: curl -fsSL https://git.furtherverse.com/imbytecat/archlinux-config/raw/branch/main/install.sh | bash" +echo " 3. 运行: curl -fsSL https://git.furtherverse.com/imbytecat/archlinux-config/raw/branch/main/scripts/install.sh | bash"