File xmq-use-xdg-open.patch of Package xmq
diff --git a/src/main/c/xmq-cli.c b/src/main/c/xmq-cli.c
index 9f2f889..a1fd8cc 100644
--- a/src/main/c/xmq-cli.c
+++ b/src/main/c/xmq-cli.c
@@ -3099,7 +3099,7 @@ void open_browser(const char *file)
#else
char buf[2049];
memset(buf, 0, 2049);
- snprintf(buf, 2048, "open %s", file);
+ snprintf(buf, 2048, "xdg-open %s", file);
int rc = system(buf);
if (rc != 0)
{