feat: without xvfb-run

This commit is contained in:
2026-04-13 14:41:18 +02:00
parent 5fee055d8d
commit 3dcb407dc9
2 changed files with 3 additions and 3 deletions

View File

@@ -11,8 +11,8 @@ OP_OK = 'OK'.encode()
OP_ERROR = 'ERROR'.encode()
def exec_mumble(deaf: bool):
subprocess.Popen(['xvfb-run', 'mumble', 'rpc', 'deaf' if deaf else 'undeaf'])
subprocess.Popen(['xvfb-run', 'mumble', 'rpc', 'mute' if deaf else 'unmute'])
subprocess.Popen(['mumble', 'rpc', 'deaf' if deaf else 'undeaf'])
subprocess.Popen(['mumble', 'rpc', 'mute' if deaf else 'unmute'])
def deaf_mumble():
exec_mumble(True)

View File

@@ -75,7 +75,7 @@ def check_status(station):
time.sleep(CHECK_STATUS_INTERVAL)
# Start mumble client
subprocess.Popen(['xvfb-run', 'mumble', 'mumble://uli@miki'])
subprocess.Popen(['mumble', 'mumble://uli@miki'])
# Start thread to wait for incoming hang petitions.
thread_listen = Thread(target=listen, args=(callManager,))