summaryrefslogtreecommitdiff
path: root/x11-wm/hyprland/files
diff options
context:
space:
mode:
Diffstat (limited to 'x11-wm/hyprland/files')
-rw-r--r--x11-wm/hyprland/files/patch-hyprctl_main.cpp4
-rw-r--r--x11-wm/hyprland/files/patch-src_config_ConfigWatcher.cpp10
2 files changed, 2 insertions, 12 deletions
diff --git a/x11-wm/hyprland/files/patch-hyprctl_main.cpp b/x11-wm/hyprland/files/patch-hyprctl_main.cpp
index b1c28e23f453..caeb2aab9d59 100644
--- a/x11-wm/hyprland/files/patch-hyprctl_main.cpp
+++ b/x11-wm/hyprland/files/patch-hyprctl_main.cpp
@@ -1,11 +1,11 @@
---- hyprctl/main.cpp.orig 2025-09-10 12:53:39 UTC
+--- hyprctl/main.cpp.orig 2025-11-09 23:33:25 UTC
+++ hyprctl/main.cpp
@@ -270,7 +270,7 @@ int requestIPC(std::string_view filename, std::string_
sockaddr_un serverAddress = {0};
serverAddress.sun_family = AF_UNIX;
- std::string socketPath = getRuntimeDir() + "/" + instanceSignature + "/" + filename;
-+ std::string socketPath = getRuntimeDir() + "/" + instanceSignature + "/" + std::string(filename);
++ std::string socketPath = getRuntimeDir() + "/" + instanceSignature + "/" + static_cast<std::string>(filename);
strncpy(serverAddress.sun_path, socketPath.c_str(), sizeof(serverAddress.sun_path) - 1);
diff --git a/x11-wm/hyprland/files/patch-src_config_ConfigWatcher.cpp b/x11-wm/hyprland/files/patch-src_config_ConfigWatcher.cpp
deleted file mode 100644
index 3dc27808ece6..000000000000
--- a/x11-wm/hyprland/files/patch-src_config_ConfigWatcher.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/config/ConfigWatcher.cpp.orig 2025-09-13 08:12:56 UTC
-+++ src/config/ConfigWatcher.cpp
-@@ -1,5 +1,7 @@
- #include "ConfigWatcher.hpp"
-+#if defined(__linux__)
- #include <linux/limits.h>
-+#endif
- #include <sys/inotify.h>
- #include "../debug/Log.hpp"
- #include <ranges>