From 25931051a8ed70b527f93ca1d0249538cf5980f1 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 14 Aug 2023 06:48:26 -0400 Subject: [PATCH] misc wsl edits --- README.md | 7 +++++-- home/run_once_install-packages.sh.tmpl | 6 ++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d266b53..4e8e966 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ```bash # debian sudo hostnamectl set-hostname $MY_HOSTNAME.local -# or edit /etc/hostname on wsl, since no systemd +# or don't worry about it on WSL machines # macos sudo scutil --set HostName $MY_HOSTNAME.local @@ -18,6 +18,7 @@ dscacheutil -flushcache # maybe reboot, too? ```bash # debian +sudo apt update sudo apt install curl zsh git # macos @@ -33,7 +34,9 @@ xcode-select --install chsh -s $(which zsh) ``` -4) install a patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads). size 16 or 17, no anti-aliasing +4) install a patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads). + - wsl: size 11 + - macos: size 16 or 17, no anti-aliasing 5) install `age` private key from password manager into `~/.key.txt` diff --git a/home/run_once_install-packages.sh.tmpl b/home/run_once_install-packages.sh.tmpl index 7742318..3baeb6b 100644 --- a/home/run_once_install-packages.sh.tmpl +++ b/home/run_once_install-packages.sh.tmpl @@ -39,6 +39,8 @@ sudo apt install \ -y curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /tmp/rustup.sh && chmod u+x /tmp/rustup.sh && /tmp/rustup.sh -y && rustup update stable -git clone https://github.com/helix-editor/helix.git --branch 23.05 /tmp/helix -export PATH=$PATH:$HOME/.cargo/bin && cd /tmp/helix && cargo install --path helix-term --locked && hx --grammar fetch && hx --grammar build +git clone https://github.com/helix-editor/helix.git --branch 23.05 $HOME/.src/helix +export PATH=$PATH:$HOME/.cargo/bin && cd $HOME/.src/helix && cargo install --path helix-term --locked && hx --grammar fetch && hx --grammar build + +git clone ssh://git@pingo.thermokar.st/gwar $HOME/.src/gwar && cd $HOME/.src/gwar && cargo build --release && cp target/release/gwar ~/bin {{ end }}