From fb4225996bb1c0ac2c877ade4ddeb82c8a4c0382 Mon Sep 17 00:00:00 2001 From: Richard Bainesly Date: Thu, 20 Jun 2024 22:47:35 -0400 Subject: [PATCH] fix default --- hyprctl/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp index d87210c1..611fee60 100644 --- a/hyprctl/main.cpp +++ b/hyprctl/main.cpp @@ -138,7 +138,7 @@ int rollingRead(const int socket, int rate) { return 0; } -int request(std::string arg, int minArgs = 0, bool needRoll = false, int rollRate = 50) { +int request(std::string arg, int minArgs = 0, bool needRoll = false, int rollRate = 20) { const auto SERVERSOCKET = socket(AF_UNIX, SOCK_STREAM, 0); auto t = timeval{.tv_sec = 0, .tv_usec = 100000};