summaryrefslogtreecommitdiff
path: root/kvmd/apps/vnc/__init__.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-03-20 15:33:47 +0300
committerDevaev Maxim <[email protected]>2020-03-20 15:33:47 +0300
commit3cafcaf4314e9a8fe66219d72ed4ae99abc04ab1 (patch)
treedf4d10e8197f38eb42d4a8a6d1642b52f2e0b901 /kvmd/apps/vnc/__init__.py
parent55307fe8da9b483a5d99f459cee5178879f69911 (diff)
configurable desired_fps
Diffstat (limited to 'kvmd/apps/vnc/__init__.py')
-rw-r--r--kvmd/apps/vnc/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/kvmd/apps/vnc/__init__.py b/kvmd/apps/vnc/__init__.py
index 49f7fcbe..568a34d7 100644
--- a/kvmd/apps/vnc/__init__.py
+++ b/kvmd/apps/vnc/__init__.py
@@ -43,6 +43,7 @@ def main(argv: Optional[List[str]]=None) -> None:
VncServer(
kvmd=KvmdClient(**config.kvmd._unpack()),
streamer=StreamerClient(**config.streamer._unpack()),
+ desired_fps=config.desired_fps,
symmap=build_symmap(config.keymap),
**config.server._unpack(),
).run()