Merge Arch config as main #1
2 changed files with 23 additions and 2 deletions
17
.install/install-yay.sh
Normal file
17
.install/install-yay.sh
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if sudo pacman -Qs yay > /dev/null ; then
|
||||||
|
echo ":: yay is already installed!"
|
||||||
|
else
|
||||||
|
echo ":: yay is not installed. Starting the installation!"
|
||||||
|
_installPackagesPacman "base-devel"
|
||||||
|
SCRIPT=$(realpath "$0")
|
||||||
|
temp_path=$(dirname "$SCRIPT")
|
||||||
|
echo $temp_path
|
||||||
|
git clone https://aur.archlinux.org/yay-git.git ~/yay-git
|
||||||
|
cd ~/yay-git
|
||||||
|
makepkg -si
|
||||||
|
cd $temp_path
|
||||||
|
echo ":: yay has been installed successfully."
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
packagesPacman=(
|
packagesPacman=(
|
||||||
|
"thunar"
|
||||||
"zsh"
|
"zsh"
|
||||||
"bitwarden"
|
"bitwarden"
|
||||||
"firefox"
|
"firefox"
|
||||||
|
|
@ -13,11 +14,14 @@ packagesPacman=(
|
||||||
"xclip"
|
"xclip"
|
||||||
"ripgrep"
|
"ripgrep"
|
||||||
"waybar"
|
"waybar"
|
||||||
"swaylock"
|
"hypridle"
|
||||||
"swayidle"
|
"hyprlock"
|
||||||
|
"btop"
|
||||||
|
"dunst"
|
||||||
)
|
)
|
||||||
|
|
||||||
packagesYay=(
|
packagesYay=(
|
||||||
|
"cava"
|
||||||
)
|
)
|
||||||
|
|
||||||
packagesBrew=(
|
packagesBrew=(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue