31 lines
561 B
Bash
31 lines
561 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 \
|
|
eid-mw \
|
|
redshift \
|
|
brightnessctl \
|
|
inetutils \
|
|
# steam font dependency
|
|
ttf-liberation \
|
|
|
|
# these are doom (emacs) dependencies
|
|
sudo pacman -Sy \
|
|
shellcheck \
|
|
fd \
|
|
pandoc
|
|
|
|
# install nice tools
|
|
sudo pacman -Sy \
|
|
tree
|
|
|
|
yay -Sy \
|
|
# siji font for glyphs (polybar)
|
|
siji-git
|