1
0
Fork 0

Begin implement arch autoconf

This commit is contained in:
Florian RICHER 2022-05-06 22:17:01 +02:00
parent 8ff142bc1f
commit 2e78190d74
2 changed files with 4 additions and 16 deletions

View file

@ -0,0 +1,4 @@
{{ if eq .chezmoi.osRelease.idLike "arch" }}
#!/bin/bash
sudo pacman -S picom i3-gaps polybar dunst
{{ end }}

View file

@ -1,16 +0,0 @@
{{ if ne .chezmoi.os "windows" }}
#!/bin/bash
# {{ 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 -}}
{{ end -}}