fixing up bootstrappign scripts
This commit is contained in:
parent
12dabf43e9
commit
651c566ae9
4 changed files with 36 additions and 8 deletions
|
@ -1,5 +1,8 @@
|
||||||
{{ if eq .chezmoi.hostname "devterm" -}}
|
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
{{ if eq .chezmoi.hostname "devterm" -}}
|
||||||
sudo apt install \
|
sudo apt install \
|
||||||
brightnessctl \
|
brightnessctl \
|
||||||
git \
|
git \
|
||||||
|
@ -12,8 +15,8 @@ sudo apt install \
|
||||||
wget \
|
wget \
|
||||||
zsh \
|
zsh \
|
||||||
-y
|
-y
|
||||||
|
|
||||||
{{ else if eq .chezmoi.hostname "rattusrattus" -}}
|
{{ else if eq .chezmoi.hostname "rattusrattus" -}}
|
||||||
#!/bin/sh
|
|
||||||
sudo port install \
|
sudo port install \
|
||||||
colima \
|
colima \
|
||||||
curl \
|
curl \
|
||||||
|
@ -27,20 +30,18 @@ sudo port install \
|
||||||
wget \
|
wget \
|
||||||
zellij \
|
zellij \
|
||||||
zsh
|
zsh
|
||||||
|
|
||||||
{{ else if eq .chezmoi.hostname "yersiniapestis" -}}
|
{{ else if eq .chezmoi.hostname "yersiniapestis" -}}
|
||||||
#!/bin/sh
|
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install \
|
sudo apt install \
|
||||||
|
build-essential \
|
||||||
clang \
|
clang \
|
||||||
|
libssl-dev \
|
||||||
|
pkg-config \
|
||||||
ripgrep \
|
ripgrep \
|
||||||
tmux \
|
tmux \
|
||||||
tree \
|
tree \
|
||||||
wget \
|
wget \
|
||||||
-y
|
-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 $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 }}
|
{{ end }}
|
8
home/run_once_02install-rust.sh.tmpl
Normal file
8
home/run_once_02install-rust.sh.tmpl
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
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
|
11
home/run_once_03install-gwar.sh.tmpl
Normal file
11
home/run_once_03install-gwar.sh.tmpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ ! -d $HOME/.src/gwar ] ; then
|
||||||
|
git clone ssh://git@pingo.thermokar.st/gwar $HOME/.src/gwar
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $HOME/.src/gwar
|
||||||
|
cargo build --release
|
||||||
|
cp target/release/gwar ~/bin
|
8
home/run_once_04install-helix.sh.tmpl
Normal file
8
home/run_once_04install-helix.sh.tmpl
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
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
|
Loading…
Add table
Reference in a new issue