update: hypr&neovim improvements, yazi plugins, waybar tweaking before bigger update

This commit is contained in:
2026-04-25 09:48:48 +03:00
parent 1930ed092f
commit 6cbd52f0db
71 changed files with 1470 additions and 223 deletions
+15
View File
@@ -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