15 lines
231 B
Bash
15 lines
231 B
Bash
#!/bin/bash
|
|
|
|
{{ if .root }}
|
|
|
|
{{ if eq .chezmoi.osRelease.id "arch" }}
|
|
sudo pacman -Syy --needed \
|
|
feh \
|
|
git \
|
|
zsh \
|
|
&& true
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
# vim: set ft=bash :
|