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"