66 lines
798 B
Bash
66 lines
798 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
{{ if eq .hosttype "devterm" -}}
|
|
sudo apt install \
|
|
brightnessctl \
|
|
git \
|
|
libncurses-dev \
|
|
libssl-dev \
|
|
lynx \
|
|
ripgrep \
|
|
tmux \
|
|
tree \
|
|
wget \
|
|
zsh \
|
|
-y
|
|
|
|
{{ else if eq .chezmoi.os "darwin" -}}
|
|
sudo port install \
|
|
cmus \
|
|
curl \
|
|
direnv \
|
|
fzf \
|
|
git \
|
|
git-delta \
|
|
helix \
|
|
jujutsu \
|
|
kitty \
|
|
ripgrep \
|
|
tmux \
|
|
tree \
|
|
watch \
|
|
wget \
|
|
xz \
|
|
zellij \
|
|
zk \
|
|
zsh
|
|
|
|
{{ else if eq .hosttype "wsl" -}}
|
|
sudo apt update
|
|
sudo apt install \
|
|
build-essential \
|
|
clang \
|
|
libssl-dev \
|
|
pkg-config \
|
|
ripgrep \
|
|
tmux \
|
|
tree \
|
|
wget \
|
|
-y
|
|
{{ end }}
|
|
|
|
{{ if eq .hosttype "work" -}}
|
|
sudo port install \
|
|
1password-cli \
|
|
docker-credential-helper-ecr \
|
|
gh \
|
|
jq \
|
|
k9s \
|
|
kind \
|
|
libmemcached \
|
|
saml2aws \
|
|
shfmt \
|
|
stern
|
|
{{ end }}
|