dotfiles/home/run_once_01install-packages.sh.tmpl
Matthew Dillon 5a8bd47acd clean up some packages
- prefer docker desktop
- i haven't really had time to play with zellij
2023-10-23 10:01:45 +02:00

43 lines
548 B
Bash

#!/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 \
curl \
git \
helix \
ripgrep \
tmux \
tree \
wget \
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 }}