37 lines
607 B
Bash
37 lines
607 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 \
|
|
alacritty \
|
|
brightnessctl \
|
|
dunst \
|
|
eid-mw \
|
|
htop \
|
|
inetutils \
|
|
pacman-contrib \
|
|
picom \
|
|
qutebrowser \
|
|
redshift \
|
|
reflector \
|
|
scrot \
|
|
ttf-liberation \
|
|
xclip \
|
|
xsel \
|
|
tree \
|
|
calc \
|
|
zsh \
|
|
rofi \
|
|
dmenu \
|
|
bind
|
|
|
|
# these are doom (emacs) dependencies
|
|
sudo pacman -Sy \
|
|
shellcheck \
|
|
fd \
|
|
pandoc
|
|
|
|
# siji font for glyphs (polybar)
|
|
yay -Sy \
|
|
siji-git
|