diff options
Diffstat (limited to '.config/yadm/scripts/bootstrap/packages-aur')
-rwxr-xr-x | .config/yadm/scripts/bootstrap/packages-aur | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.config/yadm/scripts/bootstrap/packages-aur b/.config/yadm/scripts/bootstrap/packages-aur new file mode 100755 index 0000000..55acf8c --- /dev/null +++ b/.config/yadm/scripts/bootstrap/packages-aur @@ -0,0 +1,41 @@ +#!/bin/zsh + + +ZSH_SOURCE=${(%):-%x} + +$(dirname $ZSH_SOURCE)/aurutils/bootstrap + +export AUR_PAGER=nvim +aur sync -nr autojump +aur sync -nr sway-services-git +aur sync -nr nnn-nerd +aur sync -nr sunwait + +sudo pacman -Sy \ + autojump \ + sway-services-git \ + nnn-nerd \ + sunwait + +echo "Install graphical applications from aur? (could take a while) [Y/n]" +read REPLY +if [[ $REPLY =~ ^[Yy]$ ]] +then + aur sync -nr freetube-bin + aur sync -nr lagrange + aur sync -nr localsend-bin + aur sync -nr moonlight-qt-bin + + sudo pacman -Sy \ + freetube-bin \ + lagrange \ + localsend-bin \ + moonlight-qt-bin +fi + +echo "Install japanese keyboard from aur? (will take a while) [Y/n]" +read REPLY +if [[ $REPLY =~ ^[Yy]$ ]] +then + $(dirname $ZSH_SOURCE)/fcitx5/bootstrap +fi |