From cdaa496314f90412963f2b3211e18df72910066d Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 7 Jul 2020 21:00:37 +0200 Subject: Warn if on GNOME GNOME actively fights the standard we try to rely on. --- video/out/vo.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'video/out') diff --git a/video/out/vo.c b/video/out/vo.c index 27be4735ab..1535994a69 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -340,6 +340,13 @@ error: struct vo *init_best_video_out(struct mpv_global *global, struct vo_extra *ex) { + const char *xdg_current_desktop = getenv("XDG_CURRENT_DESKTOP"); + if (xdg_current_desktop && strstr(xdg_current_desktop, "GNOME")) { + struct mp_log *log = mp_log_new(NULL, global->log, "vo"); + mp_fatal(log, "GNOME detected. Things will be broken.\n"); + talloc_free(log); + } + struct mp_vo_opts *opts = mp_get_config_group(NULL, global, &vo_sub_opts); struct m_obj_settings *vo_list = opts->video_driver_list; struct vo *vo = NULL; -- cgit v1.2.3