dotfiles/run_once_01_install_packages.sh.tmpl

16 lines
231 B
Cheetah
Raw Normal View History

2020-11-23 05:35:09 +00:00
#!/bin/bash
2020-11-23 18:10:19 +00:00
{{ if .root }}
{{ if eq .chezmoi.osRelease.id "arch" }}
sudo pacman -Syy --needed \
feh \
git \
zsh \
&& true
{{ end }}
2020-11-23 05:35:09 +00:00
{{ end }}
# vim: set ft=bash :