fixing up bootstrappign scripts

This commit is contained in:
Matthew Ryan Dillon 2023-09-03 13:55:53 -04:00
parent 12dabf43e9
commit 651c566ae9
4 changed files with 36 additions and 8 deletions

View file

@ -0,0 +1,47 @@
#!/bin/sh
set -e
{{ if eq .chezmoi.hostname "devterm" -}}
sudo apt install \
brightnessctl \
git \
libncurses-dev \
libssl-dev \
lynx \
ripgrep \
tmux \
tree \
wget \
zsh \
-y
{{ else if eq .chezmoi.hostname "rattusrattus" -}}
sudo port install \
colima \
curl \
docker \
docker-compose \
git \
helix \
ripgrep \
tmux \
tree \
wget \
zellij \
zsh
{{ else if eq .chezmoi.hostname "yersiniapestis" -}}
sudo apt update
sudo apt install \
build-essential \
clang \
libssl-dev \
pkg-config \
ripgrep \
tmux \
tree \
wget \
-y
{{ end }}