2021-06-12 00:15:13 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
## Install all pkgs required for xmonad to run at full capacity
|
|
|
|
|
|
|
|
xmonad_pkgs=(autorandr feh xorg-server xorg-xset libpulse flameshot
|
2022-07-02 17:09:21 -04:00
|
|
|
playerctl acpid ttf-symbola-free ttf-symbola-free
|
|
|
|
ttf-dejavu numlockx picom i3lock-color
|
2021-06-12 00:15:13 -04:00
|
|
|
xorg-xrandr xss-lock)
|
|
|
|
|
|
|
|
yay --needed --noconfirm --norebuild --removemake -S "${xmonad_pkgs[@]}"
|