updated installs scripts

This commit is contained in:
JaKooLit 2023-12-01 10:54:34 +09:00
parent 1fbb5bb924
commit 45bc50e321
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
## Changelogs ## 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 ## 26 Nov 2023
- nvidia - Move to normal hyprland package as nvidia patches are doing nothing see [`commit`](https://github.com/hyprwm/Hyprland/commit/cd96ceecc551c25631783499bd92c6662c5d3616) - nvidia - Move to normal hyprland package as nvidia patches are doing nothing see [`commit`](https://github.com/hyprwm/Hyprland/commit/cd96ceecc551c25631783499bd92c6662c5d3616)

View File

@ -15,7 +15,7 @@ LOG="install-$(date +%d-%H%M%S)_hyprland.log"
# Clone, build, and install Hyprland using Cmake # Clone, build, and install Hyprland using Cmake
printf "${NOTE} Cloning Hyprland...\n" 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 cd Hyprland || exit 1
make all 2>&1 | tee -a "$LOG" make all 2>&1 | tee -a "$LOG"
if sudo make install 2>&1 | tee -a "$LOG"; then if sudo make install 2>&1 | tee -a "$LOG"; then

View File

@ -81,7 +81,7 @@ add_to_file() {
# Clone, build, and install nvidia-Hyprland using Cmake # Clone, build, and install nvidia-Hyprland using Cmake
printf "${NOTE} Installing nvidia-Hyprland...\n" 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 cd Hyprland || exit 1
make all make all
if sudo make install 2>&1 | tee -a "$LOG"; then if sudo make install 2>&1 | tee -a "$LOG"; then