i3-companion: use double exec for Quake console as well

This commit is contained in:
Vincent Bernat 2021-07-11 00:26:52 +02:00
parent b7a878d8f7
commit c13fb9f387

View file

@ -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()