From c13fb9f387f559d6767815c21bf9675a1fa7c064 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 11 Jul 2021 00:26:52 +0200 Subject: [PATCH] i3-companion: use double exec for Quake console as well --- bin/i3-companion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/i3-companion b/bin/i3-companion index a670268..5cb5213 100755 --- a/bin/i3-companion +++ b/bin/i3-companion @@ -191,7 +191,7 @@ async def quake_console(i3, event): tree = await i3.get_tree() term = tree.find_instanced(term_name) if not term: - await i3.command(f'exec {term_exec} --name {term_name}') + await i3.command(f'exec exec {term_exec} --name {term_name}') tries = 5 while not term and tries: tree = await i3.get_tree()