From 505c100335d7e83c64858ac466147fc3a295db62 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 29 May 2022 19:01:35 +0200 Subject: [PATCH] remove exec from gnome and kde wayland startup --- usr/lib/archboot/gnome-wayland.sh | 2 +- usr/lib/archboot/kde-wayland.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/gnome-wayland.sh b/usr/lib/archboot/gnome-wayland.sh index 2fbc8a920..3497cd85e 100644 --- a/usr/lib/archboot/gnome-wayland.sh +++ b/usr/lib/archboot/gnome-wayland.sh @@ -41,6 +41,6 @@ EOF _start_gnome_wayland() { echo -e "Launching GNOME Wayland now, logging is done on \033[1m/dev/tty7\033[0m ..." - LANG=C.UTF-8 MOZ_ENABLE_WAYLAND=1 QT_QPA_PLATFORM=wayland XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session >/dev/tty7 2>&1 + LANG=C.UTF-8 MOZ_ENABLE_WAYLAND=1 QT_QPA_PLATFORM=wayland XDG_SESSION_TYPE=wayland dbus-run-session gnome-session >/dev/tty7 2>&1 echo -e "To relaunch GNOME Wayland use: \033[92mupdate-installer.sh -gnome-wayland\033[0m" } diff --git a/usr/lib/archboot/kde-wayland.sh b/usr/lib/archboot/kde-wayland.sh index c93849212..ba057bcee 100644 --- a/usr/lib/archboot/kde-wayland.sh +++ b/usr/lib/archboot/kde-wayland.sh @@ -74,6 +74,6 @@ EOF _start_kde_wayland() { echo -e "Launching KDE/Plasma Wayland now, logging is done on \033[1m/dev/tty7\033[0m ..." - exec dbus-run-session startplasma-wayland >/dev/tty7 2>&1 + dbus-run-session startplasma-wayland >/dev/tty7 2>&1 echo -e "To relaunch KDE/Plasma Wayland use: \033[92mupdate-installer.sh -kde-wayland\033[0m" }