Files
dotfiles/home/run_onchange_install-packages.sh.tmpl
Xevion 03367f3297 Add zsh, fish, nmap, curl, git, reptyr, sqlite to onchange installer script
With some notes about potential library development dependencies
2024-10-26 23:12:24 -05:00

10 lines
291 B
Bash

{{ if eq .chezmoi.os "linux" -}}
#!/bin/sh
# libpq-dev libssh-dev libsqlite3-dev
echo "chezmoi: Installing packages"
sudo apt install micro iperf3 ripgrep unzip p7zip-full zsh fish nmap curl git reptyr sqlite
{{- else if eq .chezmoi.os "darwin" -}}
#!/bin/sh
brew install ripgrep
{{ end -}}