From e4517db6487f75d095202938ecff76b782f90cbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Sat, 4 Apr 2026 17:48:21 +0200 Subject: [PATCH] Set mpv video output to 'x11' by default This ensures that the video output is always embedded into the main window. Closes: https://github.com/linuxmint/hypnotix/issues/198 --- usr/lib/hypnotix/hypnotix.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr/lib/hypnotix/hypnotix.py b/usr/lib/hypnotix/hypnotix.py index a6be99f..f63d8f1 100755 --- a/usr/lib/hypnotix/hypnotix.py +++ b/usr/lib/hypnotix/hypnotix.py @@ -1622,6 +1622,8 @@ def reinit_mpv(self): if self.mpv is not None: self.mpv.stop() options = {} + options["vo"] = "x11" + try: mpv_options = self.settings.get_string("mpv-options") if ("=") in mpv_options: