-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-user.sh
32 lines (27 loc) · 1.01 KB
/
2-user.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
echo "-------------------------------------------------"
echo "Installing Paru AUR Helper "
echo "This may take some time... Please be patient "
echo "-------------------------------------------------"
git clone https://aur.archlinux.org/paru-bin.git ~/paru-bin
cd ~/paru-bin/;makepkg -si --noconfirm;cd ~
rm -rf paru-bin/
echo "-------------------------------------------------"
echo "Installing AUR packages "
echo "This may take some time... Please be patient "
echo "-------------------------------------------------"
PKGS=(
'zramd'
# 'vim-plug'
# 'neovim-plug'
# 'powershell-bin'
# 'update-grub'
)
for PKG in "${PKGS[@]}"; do
paru -S --noconfirm $PKG
done
#echo "-------------------------------------------------"
#echo "Installing Oh-My-ZSH "
#echo "-------------------------------------------------"
#cd ~
#sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended