mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
Compare commits
No commits in common. "e21452b70da3fba60191e544d26b2609d3f0fae1" and "e55dad3ad593570b277fe32d8a9d5d7a853d96bf" have entirely different histories.
e21452b70d
...
e55dad3ad5
@ -1,26 +0,0 @@
|
||||
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp
|
||||
index daf8d4a8..62ab8578 100644
|
||||
--- a/hyprctl/main.cpp
|
||||
+++ b/hyprctl/main.cpp
|
||||
@@ -268,7 +268,7 @@ int requestIPC(std::string_view filename, std::string_view arg) {
|
||||
sockaddr_un serverAddress = {0};
|
||||
serverAddress.sun_family = AF_UNIX;
|
||||
|
||||
- std::string socketPath = getRuntimeDir() + "/" + instanceSignature + "/" + filename;
|
||||
+ std::string socketPath = getRuntimeDir() + "/" + std::string(instanceSignature) + "/" + std::string(filename);
|
||||
|
||||
strncpy(serverAddress.sun_path, socketPath.c_str(), sizeof(serverAddress.sun_path) - 1);
|
||||
|
||||
diff --git a/src/helpers/Monitor.cpp b/src/helpers/Monitor.cpp
|
||||
index 4e5c4080..1944f22e 100644
|
||||
--- a/src/helpers/Monitor.cpp
|
||||
+++ b/src/helpers/Monitor.cpp
|
||||
@@ -549,7 +549,7 @@ bool CMonitor::applyMonitorRule(SMonitorRule* pMonitorRule, bool force) {
|
||||
std::ranges::sort(sortedModes, sortFunc);
|
||||
if (sortedModes.size() > 3)
|
||||
sortedModes.erase(sortedModes.begin() + 3, sortedModes.end());
|
||||
- requestedModes.insert_range(requestedModes.end(), sortedModes | std::views::reverse);
|
||||
+ requestedModes.insert(requestedModes.end(), sortedModes.rbegin(), sortedModes.rend());
|
||||
};
|
||||
|
||||
// last fallback is always preferred mode
|
||||
0
install-scripts/02-pre-cleanup.sh
Executable file → Normal file
0
install-scripts/02-pre-cleanup.sh
Executable file → Normal file
0
install-scripts/03-Final-Check.sh
Executable file → Normal file
0
install-scripts/03-Final-Check.sh
Executable file → Normal file
@ -9,7 +9,7 @@ librsvg2-dev
|
||||
)
|
||||
|
||||
#specific branch or release
|
||||
tag="v0.1.13"
|
||||
tag="v0.1.12"
|
||||
|
||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
@ -3,11 +3,9 @@
|
||||
# Main Hyprland Package#
|
||||
|
||||
#specific branch or release
|
||||
tag="v0.50.1"
|
||||
tag="v0.49.0"
|
||||
|
||||
hyprland=(
|
||||
clang
|
||||
llvm
|
||||
libxcb-errors-dev
|
||||
libre2-dev
|
||||
libglaze-dev
|
||||
@ -67,8 +65,7 @@ fi
|
||||
|
||||
if git clone --recursive -b $tag "https://github.com/hyprwm/Hyprland"; then
|
||||
cd "Hyprland" || exit 1
|
||||
patch -p1 < ../assets/0001-fix-hyprland-compile-issue.patch
|
||||
CXX=clang++ CXXFLAGS=-std=gnu++26 make all
|
||||
make all
|
||||
if sudo make install 2>&1 | tee -a "$MLOG"; then
|
||||
printf "${OK} ${MAGENTA}Hyprland tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||
else
|
||||
@ -80,4 +77,4 @@ else
|
||||
echo -e "${ERROR} Download failed for ${YELLOW}Hyprland $tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||
fi
|
||||
|
||||
printf "\n%.0s" {1..2}
|
||||
printf "\n%.0s" {1..2}
|
||||
@ -5,7 +5,7 @@
|
||||
|
||||
|
||||
#specific branch or release
|
||||
tag="v0.6.4"
|
||||
tag="v0.6.3"
|
||||
|
||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
@ -50,4 +50,4 @@ else
|
||||
echo -e "${ERROR} Download failed for ${YELLOW}hyprlang $tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||
fi
|
||||
|
||||
printf "\n%.0s" {1..2}
|
||||
printf "\n%.0s" {1..2}
|
||||
@ -16,7 +16,7 @@ build_dep=(
|
||||
)
|
||||
|
||||
#specific branch or release
|
||||
tag="v0.9.1"
|
||||
tag="v0.9.0"
|
||||
|
||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
@ -13,7 +13,7 @@ polkitagent=(
|
||||
)
|
||||
|
||||
#specific branch or release
|
||||
tag="v0.1.3"
|
||||
tag="v0.1.2"
|
||||
|
||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
# hyprutils #
|
||||
|
||||
#specific branch or release
|
||||
tag="v0.8.2"
|
||||
tag="v0.8.1"
|
||||
|
||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
@ -13,7 +13,7 @@ xdg=(
|
||||
)
|
||||
|
||||
#specific branch or release
|
||||
tag="v1.3.10"
|
||||
tag="v1.3.9"
|
||||
|
||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user