From c8af3d585a7dc75b31fd158fd5b00898c8033e17 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 11 Jul 2021 00:28:11 +0200 Subject: [PATCH] i3-companion: wait longer to debounce XRandR events --- bin/i3-companion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/i3-companion b/bin/i3-companion index 5cb5213..bf6974f 100755 --- a/bin/i3-companion +++ b/bin/i3-companion @@ -345,7 +345,7 @@ async def output_update(i3, event): logger.debug("schedule XRandR change") output_update_running = asyncio.get_event_loop().call_later( - 1, output_update_now) + 2, output_update_now) async def main(options):