2022-04-13 23:25:18 +02:00
|
|
|
{{ if ne .chezmoi.os "windows" }}
|
2022-04-13 22:47:36 +02:00
|
|
|
#!/bin/bash
|
2022-05-06 22:09:34 +02:00
|
|
|
# {{ if eq .chezmoi.os "linux" -}}
|
|
|
|
# {{ if eq .chezmoi.osRelease.id "ubuntu" -}}
|
|
|
|
# sudo apt install ripgrep
|
|
|
|
# {{ end -}}
|
|
|
|
# {{ end -}}
|
|
|
|
# Exemple: https://github.com/RichiCoder1/dotfiles/blob/master/executable_install-tools.sh.tmpl
|
|
|
|
|
|
|
|
{{ if eq .chezmoi.os "linux" -}}
|
|
|
|
{{ if eq .chezmoi.osRelease.idLike "arch" }}
|
|
|
|
sudo pacman -S picom i3-gaps polybar dunst
|
|
|
|
{{ end }}
|
|
|
|
# {{ else if eq .chezmoi.os "darwin" -}}
|
|
|
|
{{ end -}}
|
2022-04-13 22:47:36 +02:00
|
|
|
{{ end -}}
|