21 lines
384 B
Bash
21 lines
384 B
Bash
#!/bin/sh
|
|
# install all dependencies of the chezmoi repository
|
|
# especially useful when setting up a new system
|
|
# list is incomplete at the moment
|
|
sudo pacman -Sy \
|
|
pacman-contrib \
|
|
qutebrowser \
|
|
reflector \
|
|
xsel \
|
|
xclip
|
|
|
|
# these are doom (emacs) dependencies
|
|
sudo pacman -Sy \
|
|
shellcheck \
|
|
fd \
|
|
pandoc
|
|
|
|
# install nice tools
|
|
sudo pacman -Sy \
|
|
tree
|