diff --git a/README.md b/README.md index 55d268a..6e60893 100644 --- a/README.md +++ b/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 😊 -Buy Me a Coffee at ko-fi.com +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) + +or [!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) +Or you can donate cryto on my btc wallet :) +> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i + +![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) + + #### 📹 Youtube videos (Click to view and watch the playlist) 📹 [![Youtube Playlist Thumbnail](https://raw.githubusercontent.com/JaKooLit/screenshots/main/Youtube.png)](https://youtube.com/playlist?list=PLDtGd5Fw5_GjXCznR0BzCJJDIQSZJRbxx&si=iaNjLulFdsZ6AV-t) diff --git a/assets/hyprland-install/actions.sh b/assets/hyprland-install/actions.sh index c98b6ee..e53c625 100755 --- a/assets/hyprland-install/actions.sh +++ b/assets/hyprland-install/actions.sh @@ -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 diff --git a/install-scripts/01-hypr-pkgs.sh b/install-scripts/01-hypr-pkgs.sh index 84542d5..294147f 100755 --- a/install-scripts/01-hypr-pkgs.sh +++ b/install-scripts/01-hypr-pkgs.sh @@ -68,7 +68,6 @@ hypr_package_2=( nwg-displays pacman-contrib qalculate-gtk - vim yt-dlp ) diff --git a/install-scripts/ags.sh b/install-scripts/ags.sh index 66ed6eb..d16fb4b 100755 --- a/install-scripts/ags.sh +++ b/install-scripts/ags.sh @@ -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 diff --git a/install-scripts/dotfiles-main.sh b/install-scripts/dotfiles-main.sh index e77ecf4..93da2ce 100755 --- a/install-scripts/dotfiles-main.sh +++ b/install-scripts/dotfiles-main.sh @@ -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 diff --git a/install-scripts/gtk_themes.sh b/install-scripts/gtk_themes.sh index f4781b4..ecc0d0c 100755 --- a/install-scripts/gtk_themes.sh +++ b/install-scripts/gtk_themes.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 diff --git a/install-scripts/sddm_theme.sh b/install-scripts/sddm_theme.sh index 847f15e..a67c8c5 100755 --- a/install-scripts/sddm_theme.sh +++ b/install-scripts/sddm_theme.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 diff --git a/install.sh b/install.sh index 7ca618d..775c3a8 100755 --- a/install.sh +++ b/install.sh @@ -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