dotfiles/run_once_01_install_packages.sh.tmpl
2020-11-23 12:10:19 -06:00

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 :