mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-06 03:14:52 -06:00
8 lines
180 B
Bash
8 lines
180 B
Bash
{{ if eq .chezmoi.os "linux" -}}
|
|
#!/bin/sh
|
|
sudo apt install micro iperf3 ripgrep unzip p7zip-full
|
|
{{- else if eq .chezmoi.os "darwin" -}}
|
|
#!/bin/sh
|
|
brew install ripgrep
|
|
{{ end -}}
|