diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 32e8542..95e5d28 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## Changelogs +## 1 Dec 2023 +- replace the Hyprland to specific branch/version as newest needed some new libraries and debian dont have those yet + ## 26 Nov 2023 - nvidia - Move to normal hyprland package as nvidia patches are doing nothing see [`commit`](https://github.com/hyprwm/Hyprland/commit/cd96ceecc551c25631783499bd92c6662c5d3616) diff --git a/install-scripts/hyprland.sh b/install-scripts/hyprland.sh index f0d312f..7a242a9 100644 --- a/install-scripts/hyprland.sh +++ b/install-scripts/hyprland.sh @@ -15,7 +15,7 @@ LOG="install-$(date +%d-%H%M%S)_hyprland.log" # Clone, build, and install Hyprland using Cmake printf "${NOTE} Cloning Hyprland...\n" -if git clone --recursive https://github.com/hyprwm/Hyprland 2>&1 | tee -a "$LOG"; then +if git clone --recursive -b v0.32.3 "https://github.com/hyprwm/Hyprland" 2>&1 | tee -a "$LOG"; then cd Hyprland || exit 1 make all 2>&1 | tee -a "$LOG" if sudo make install 2>&1 | tee -a "$LOG"; then diff --git a/install-scripts/nvidia.sh b/install-scripts/nvidia.sh index be8b111..54a895e 100644 --- a/install-scripts/nvidia.sh +++ b/install-scripts/nvidia.sh @@ -81,7 +81,7 @@ add_to_file() { # Clone, build, and install nvidia-Hyprland using Cmake printf "${NOTE} Installing nvidia-Hyprland...\n" -if git clone --recursive https://github.com/hyprwm/Hyprland 2>&1 | tee -a "$LOG"; then +if git clone --recursive -b v0.32.3 "https://github.com/hyprwm/Hyprland" 2>&1 | tee -a "$LOG"; then cd Hyprland || exit 1 make all if sudo make install 2>&1 | tee -a "$LOG"; then