From 5e44ee9e38347ca1f0665313af158933d6368dc9 Mon Sep 17 00:00:00 2001 From: Username Date: Tue, 24 Feb 2026 14:15:42 +0100 Subject: [PATCH] app: wire volume and certificate config --- src/tuimble/app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tuimble/app.py b/src/tuimble/app.py index b61642e..6bc67f3 100644 --- a/src/tuimble/app.py +++ b/src/tuimble/app.py @@ -361,6 +361,8 @@ class TuimbleApp(App): port=srv.port, username=srv.username, password=srv.password, + certfile=srv.certfile, + keyfile=srv.keyfile, ) self._history: list[str] = [] self._history_idx: int = -1 @@ -372,6 +374,8 @@ class TuimbleApp(App): input_device=acfg.input_device, output_device=acfg.output_device, ) + self._audio.input_gain = acfg.input_gain + self._audio.output_gain = acfg.output_gain def compose(self) -> ComposeResult: yield Header()