update: hypr&neovim improvements, yazi plugins, waybar tweaking before bigger update
This commit is contained in:
Executable
+15
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
# Installing yay
|
||||
echo "Checking if yay is installed...."
|
||||
if ! command -v yay >/dev/null 2>&1; then
|
||||
echo "yay is not installed. Installing..."
|
||||
mkdir -p ~/tmp/yay-install
|
||||
cd ~/tmp/yay-install
|
||||
git clone https://aur.archlinux.org/yay.git
|
||||
cd yay
|
||||
makepkg -si
|
||||
cd
|
||||
rm -rf ~/tmp/yay-install
|
||||
else
|
||||
echo "yay is installed. Skipping..."
|
||||
fi
|
||||
Reference in New Issue
Block a user