up the max hyprctl port

This commit is contained in:
vaxerski 2022-03-22 22:02:43 +01:00
parent 118006e876
commit e6fcbf576c
1 changed files with 1 additions and 1 deletions

View File

@ -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;