From 3afea3a0d849559dd09f0dae64f3bc984b40edfa Mon Sep 17 00:00:00 2001 From: Eneko Nieto Date: Mon, 13 Apr 2026 13:43:27 +0200 Subject: [PATCH] fix: deaf and mute. Absolute path for mumble. --- call_manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/call_manager.py b/call_manager.py index 1a33dc8..3546d3c 100644 --- a/call_manager.py +++ b/call_manager.py @@ -11,7 +11,8 @@ OP_OK = 'OK'.encode() OP_ERROR = 'ERROR'.encode() def exec_mumble(deaf: bool): - subprocess.Popen(['mumble', 'rpc', 'deaf' if deaf else 'undeaf']) + subprocess.Popen(['/usr/bin/mumble', 'rpc', 'deaf' if deaf else 'undeaf']) + subprocess.Popen(['/usr/bin/mumble', 'rpc', 'mute' if deaf else 'unmute']) def deaf_mumble(): exec_mumble(True)