From e6fcbf576cd9d8f7498f80b6fe5812fbeee07f0b Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 22 Mar 2022 22:02:43 +0100 Subject: [PATCH] up the max hyprctl port --- src/debug/HyprCtl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp index 052d512d..e4aee749 100644 --- a/src/debug/HyprCtl.cpp +++ b/src/debug/HyprCtl.cpp @@ -98,7 +98,7 @@ void HyprCtl::startHyprCtlSocket() { bool bound = false; - while (port++ < 9200) { + while (port++ < 9999) { if (bind(SOCKET, (sockaddr*)&SERVERADDRESS, sizeof(SERVERADDRESS)) >= 0) { bound = true; break;