From 93178f69f4539f7ad938e82e17d8c4953ed72fe0 Mon Sep 17 00:00:00 2001 From: amolinae06 Date: Fri, 31 Jan 2025 20:00:38 -0600 Subject: [PATCH] remove xwayland support --- config.h | 5 ----- config.mk | 8 ++++---- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/config.h b/config.h index 4a1011f..1f22717 100644 --- a/config.h +++ b/config.h @@ -36,8 +36,6 @@ static int log_level = WLR_ERROR; static const Env envs[] = { /* variable value */ { "XDG_CURRENT_DESKTOP", "wlroots" }, - { "QT_QPA_PLATFORM", "wayland" }, - { "QT_QPA_PLATFORMTHEME", "qt6ct" }, }; /* Autostart */ @@ -46,8 +44,6 @@ static const char *const autostart[] = { "foot", "--server", NULL, "swayidle", NULL, "mako", NULL, - "gnome-keyring-daemon", "--start", "--components=secrets", NULL, - "/usr/bin/lxqt-policykit-agent", NULL, NULL /* terminate */ }; @@ -285,4 +281,3 @@ static const Button buttons[] = { { ClkTagBar, MODKEY, BTN_LEFT, tag, {0} }, { ClkTagBar, MODKEY, BTN_RIGHT, toggletag, {0} }, }; - diff --git a/config.mk b/config.mk index c3f6317..e2f1816 100644 --- a/config.mk +++ b/config.mk @@ -24,11 +24,11 @@ WLR_LIBS = `$(PKG_CONFIG) --libs wlroots-0.19` # -I$(PWD)/wlroots/0.19/include/wlroots-0.19 #WLR_LIBS = -Wl,-rpath,$(PWD)/wlroots/0.19/lib64 -L$(PWD)/wlroots/0.19/lib64 -lwlroots-0.19 -#XWAYLAND = -#XLIBS = +XWAYLAND = +XLIBS = # Uncomment to build XWayland support -XWAYLAND = -DXWAYLAND -XLIBS = xcb xcb-icccm +#XWAYLAND = -DXWAYLAND +#XLIBS = xcb xcb-icccm # dwl itself only uses C99 features, but wlroots' headers use anonymous unions (C11). # To avoid warnings about them, we do not use -std=c99 and instead of using the