From 8055c385d67a00288abfedd9c01e6a3f90f3c835 Mon Sep 17 00:00:00 2001 From: gwbeip Date: Tue, 16 Jun 2026 17:23:48 +0800 Subject: [PATCH] chore: scrub remaining username placeholders in wsl docs --- wsl/config_new_archlinux_in_wsl.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/wsl/config_new_archlinux_in_wsl.md b/wsl/config_new_archlinux_in_wsl.md index d5b8036..5bda904 100644 --- a/wsl/config_new_archlinux_in_wsl.md +++ b/wsl/config_new_archlinux_in_wsl.md @@ -1,11 +1,11 @@ # Configure New Archlinux in WSL -## Add user `gwb` +## Add user `` ```shell cd pacman -Syu -useradd -m gwb +useradd -m ``` run @@ -16,11 +16,11 @@ to set a password for `root` run ```shell -passwd gwb +passwd ``` -to set a password for user `gwb` +to set a password for user `` -## Add user `gwb` into group `sudo` +## Add user `` into group `sudo` ```shell pacman -S sudo @@ -29,7 +29,7 @@ pacman -S vim edit `/etc/sudoers` uncomment `%wheel ALL=(ALL:ALL) ALL` ```shell -usermod -aG wheel gwb +usermod -aG wheel ``` ## Install and configure `ZSH` @@ -41,12 +41,12 @@ pacman -S fzf pacman -S zoxide pacman -S starship pacman -S python -su gwb +su cd git clone $HOME/.TerminalPolyjuice chsh -s /bin/zsh exit -su gwb +su cd mkdir .config cd $HOME/.TerminalPolyjuice/zsh @@ -55,7 +55,7 @@ zsh polyjuice.sh install_ohmyzsh config_starship check add the contents in `$HOME/.TerminalPolyjuice/zsh/zshenv` into `$HOME/.zshenv` -# Set `gwb` as default user +# Set `` as default user ```shell -wsl --manage archlinux --set-default-user gwb +wsl --manage archlinux --set-default-user ```