2022-10-01 22:59:41 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-11-19 19:20:55 +00:00
|
|
|
YAY_INSTALL_DIR="$HOME/.local/src/yay"
|
2022-10-01 22:59:41 +00:00
|
|
|
|
|
|
|
aurprogs="mutt-wizard
|
|
|
|
htim
|
|
|
|
jmtpfs
|
|
|
|
tremc-git
|
|
|
|
dashbinsh
|
|
|
|
pfetch
|
|
|
|
sysrq-enabler
|
|
|
|
wlr-randr
|
|
|
|
sfeed
|
|
|
|
waylogout-git
|
|
|
|
ani-cli-git
|
|
|
|
connman-gtk
|
|
|
|
shell-color-scripts
|
|
|
|
lf-sixel-git
|
|
|
|
nerd-fonts-mononoki
|
|
|
|
autotiling
|
|
|
|
cli-visualizer
|
|
|
|
wob
|
|
|
|
wayland-idle-inhibitor-git
|
|
|
|
tofi
|
2022-11-19 19:20:55 +00:00
|
|
|
librewolf-bin
|
|
|
|
hyprland
|
|
|
|
waybar-hyprland-git"
|
2022-10-01 22:59:41 +00:00
|
|
|
|
2022-10-02 20:35:29 +00:00
|
|
|
sudo pacman -S base-devel fakeroot
|
2022-10-01 22:59:41 +00:00
|
|
|
|
|
|
|
mkdir -p "$YAY_INSTALL_DIR"
|
|
|
|
git clone https://aur.archlinux.org/yay.git "$YAY_INSTALL_DIR"
|
|
|
|
cd "$YAY_INSTALL_DIR"
|
|
|
|
makepkg -si
|
|
|
|
|
|
|
|
for pkg in $aurprogs
|
|
|
|
do
|
|
|
|
yay -S "$pkg"
|
|
|
|
|
|
|
|
done
|
|
|
|
|