remove exec from gnome and kde wayland startup

This commit is contained in:
Tobias Powalowski 2022-05-29 19:01:35 +02:00
parent 30abeb1da6
commit 505c100335
2 changed files with 2 additions and 2 deletions

View file

@ -41,6 +41,6 @@ EOF
_start_gnome_wayland() { _start_gnome_wayland() {
echo -e "Launching GNOME Wayland now, logging is done on \033[1m/dev/tty7\033[0m ..." 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" echo -e "To relaunch GNOME Wayland use: \033[92mupdate-installer.sh -gnome-wayland\033[0m"
} }

View file

@ -74,6 +74,6 @@ EOF
_start_kde_wayland() { _start_kde_wayland() {
echo -e "Launching KDE/Plasma Wayland now, logging is done on \033[1m/dev/tty7\033[0m ..." 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" echo -e "To relaunch KDE/Plasma Wayland use: \033[92mupdate-installer.sh -kde-wayland\033[0m"
} }