base deploy script
This commit is contained in:
parent
e4a574e0a2
commit
0174282938
18
install_base.sh
Executable file
18
install_base.sh
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Pacman packages
|
||||
sudo pacman --needed --noconfirm -Syu base-devel htop ranger git screen ncdu neovim pipewire sway swaybg xorg-server xorg-xwayland chezmoi
|
||||
|
||||
# Install Paru
|
||||
if pacman -Qs paru > /dev/null ; then
|
||||
echo "'Paru' already installed."
|
||||
else
|
||||
git clone https://aur.archlinux.org/paru-bin.git
|
||||
cd paru-bin/
|
||||
makepkg --needed --noconfirm -si
|
||||
cd ..
|
||||
rm -rf paru-bin/
|
||||
fi
|
||||
|
||||
# AUR Packages
|
||||
paru --needed --noconfirm -Syu paru-bin haruna
|
Loading…
Reference in a new issue