diff --git a/run_once_prepare_arch.sh.tmpl b/run_once_prepare_arch.sh.tmpl new file mode 100644 index 0000000..36913b1 --- /dev/null +++ b/run_once_prepare_arch.sh.tmpl @@ -0,0 +1,4 @@ +{{ if eq .chezmoi.osRelease.idLike "arch" }} +#!/bin/bash +sudo pacman -S picom i3-gaps polybar dunst +{{ end }} diff --git a/run_once_prepare_unix.sh.tmpl b/run_once_prepare_unix.sh.tmpl deleted file mode 100644 index 1bf9320..0000000 --- a/run_once_prepare_unix.sh.tmpl +++ /dev/null @@ -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 -}}