fix hyprctl .socket

This commit is contained in:
vaxerski 2022-03-24 18:25:18 +01:00
parent ccbc0e4a2e
commit a4f79dcb11
1 changed files with 3 additions and 1 deletions

View File

@ -122,8 +122,10 @@ void HyprCtl::startHyprCtlSocket() {
Debug::log(LOG, "Hypr socket started on port %i", SERVERADDRESS.sin_port);
std::string cmd = "rm -f /tmp/hypr/.socket && echo \"" + std::to_string(SERVERADDRESS.sin_port) + "\" > /tmp/hypr/.socket";
std::string cmd = "rm -f /tmp/hypr/.socket";
system(cmd.c_str()); // forgive me for using system() but it works and it doesnt matter here that much
cmd = "echo \"" + std::to_string(SERVERADDRESS.sin_port) + "\" > /tmp/hypr/.socket";
system(cmd.c_str());
while(1) {
const auto ACCEPTEDCONNECTION = accept(SOCKET, (sockaddr*)&clientAddress, &clientSize);