12
README.md
12
README.md
@@ -217,12 +217,20 @@ env = WLR_RENDERER_ALLOW_SOFTWARE,1
|
||||
|
||||
- Subscribe to my Youtube Channel [YouTube](https://www.youtube.com/@Ja.KooLit)
|
||||
|
||||
- You can also buy me Coffee Through ko-fi.com or Coffee.com 🤩
|
||||
- you can also give support through coffee's or btc 😊
|
||||
|
||||
<a href='https://ko-fi.com/jakoolit' target='_blank'><img height='35' style='border:0px;height:46px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' />
|
||||
[](https://ko-fi.com/jakoolit)
|
||||
|
||||
or
|
||||
|
||||
[](https://www.buymeacoffee.com/JaKooLit)
|
||||
|
||||
Or you can donate cryto on my btc wallet :)
|
||||
> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i
|
||||
|
||||

|
||||
|
||||
|
||||
#### 📹 Youtube videos (Click to view and watch the playlist) 📹
|
||||
[](https://youtube.com/playlist?list=PLDtGd5Fw5_GjXCznR0BzCJJDIQSZJRbxx&si=iaNjLulFdsZ6AV-t)
|
||||
|
||||
|
||||
@@ -25,7 +25,8 @@ while true; do
|
||||
echo -e "${BLUE} Please choose an option:${RESET}"
|
||||
echo -e "${YELLOW} -- 1 - Install non-git Hyprland version${RESET}"
|
||||
echo -e "${YELLOW} -- 2 - Install git Hyprland version${RESET}"
|
||||
echo -e "${MAGENTA} -- 3 - Quit${RESET}"
|
||||
echo -e "${YELLOW} -- 3 - Update Hyprland-git packages${RESET}"
|
||||
echo -e "${MAGENTA} -- 4 - Quit${RESET}"
|
||||
|
||||
read -p "${CAT} Enter your choice [1, 2, or 3]: " choice
|
||||
|
||||
@@ -45,12 +46,17 @@ while true; do
|
||||
break
|
||||
;;
|
||||
3)
|
||||
printf "\n${OK} You chose ${BLUE} to update Hyprland-git packages${RESET}....... executing...\n"
|
||||
./scripts/install-hyprland-git.sh
|
||||
break
|
||||
;;
|
||||
4)
|
||||
echo -e "${MAGENTA} You have cancel it. Good Bye!!...${RESET}"
|
||||
printf "\n%.0s" {1..2}
|
||||
break
|
||||
;;
|
||||
*)
|
||||
echo -e "\n${WARNING} There are only 3 Choices!!!! 1 or 2 or 3. Enter 1, 2, or 3.${RESET}"
|
||||
echo -e "\n${WARNING} There are only 4 Choices!!!! 1 2 3 or 4. Enter 1, 2, 3, or 4 only.${RESET}"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
@@ -68,7 +68,6 @@ hypr_package_2=(
|
||||
nwg-displays
|
||||
pacman-contrib
|
||||
qalculate-gtk
|
||||
vim
|
||||
yt-dlp
|
||||
)
|
||||
|
||||
|
||||
@@ -77,7 +77,7 @@ printf "\n%.0s" {1..1}
|
||||
printf "${INFO} Kindly Standby...cloning and compiling ${SKY_BLUE}Aylur's GTK shell $ags_tag${RESET}...\n"
|
||||
printf "\n%.0s" {1..1}
|
||||
# Clone repository with the specified tag and capture git output into MLOG
|
||||
if git clone --recursive -b "$ags_tag" --depth 1 https://github.com/Aylur/ags.git; then
|
||||
if git clone --recursive -b "$ags_tag" --depth=1 https://github.com/Aylur/ags.git; then
|
||||
cd ags || exit 1
|
||||
npm install
|
||||
meson setup build
|
||||
|
||||
@@ -21,13 +21,11 @@ printf "${NOTE} Cloning and Installing ${SKY_BLUE}KooL's Hyprland Dots${RESET}..
|
||||
|
||||
if [ -d Hyprland-Dots ]; then
|
||||
cd Hyprland-Dots
|
||||
git stash
|
||||
git pull
|
||||
git stash apply
|
||||
git stash && git pull
|
||||
chmod +x copy.sh
|
||||
./copy.sh
|
||||
else
|
||||
if git clone --depth 1 https://github.com/JaKooLit/Hyprland-Dots; then
|
||||
if git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots; then
|
||||
cd Hyprland-Dots || exit 1
|
||||
chmod +x copy.sh
|
||||
./copy.sh
|
||||
|
||||
@@ -37,7 +37,7 @@ if [ -d "GTK-themes-icons" ]; then
|
||||
fi
|
||||
|
||||
echo "$NOTE Cloning ${SKY_BLUE}GTK themes and Icons${RESET} repository..." 2>&1 | tee -a "$LOG"
|
||||
if git clone --depth 1 https://github.com/JaKooLit/GTK-themes-icons.git ; then
|
||||
if git clone --depth=1 https://github.com/JaKooLit/GTK-themes-icons.git ; then
|
||||
cd GTK-themes-icons
|
||||
chmod +x auto-extract.sh
|
||||
./auto-extract.sh
|
||||
|
||||
@@ -38,7 +38,7 @@ if [ -d "$theme_name" ]; then
|
||||
fi
|
||||
|
||||
# Clone the repository
|
||||
if git clone --depth 1 "$source_theme" "$theme_name"; then
|
||||
if git clone --depth=1 "$source_theme" "$theme_name"; then
|
||||
if [ ! -d "$theme_name" ]; then
|
||||
echo "${ERROR} Failed to clone the repository." | tee -a "$LOG"
|
||||
fi
|
||||
|
||||
@@ -59,7 +59,7 @@ fi
|
||||
# install whiptails if detected not installed. Necessary for this version
|
||||
if ! command -v whiptail >/dev/null; then
|
||||
echo "${NOTE} - whiptail is not installed. Installing..." | tee -a "$LOG"
|
||||
sudo pacman -S --noconfirm whiptail
|
||||
sudo pacman -S --noconfirm libnewt
|
||||
printf "\n%.0s" {1..1}
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user