2023-10-22 21:47:45 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-10-23 21:48:34 +00:00
|
|
|
if [[ "$(inxi -Gxx | grep compositor)" =~ "gnome-shell" ]]; then
|
|
|
|
zenity --info --text "This utility is meant to be executed through Steam Game Mode only."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2023-10-22 21:47:45 +00:00
|
|
|
source /etc/default/steamos-nested-desktop
|
2023-10-22 18:33:11 +00:00
|
|
|
|
|
|
|
# Remove the performance overlay, it meddles with some tasks
|
|
|
|
unset LD_PRELOAD
|
|
|
|
|
2023-10-23 21:45:57 +00:00
|
|
|
# Start a new DBus session
|
2023-10-23 03:00:31 +00:00
|
|
|
eval $(dbus-launch --sh-syntax)
|
|
|
|
|
2023-10-22 21:47:45 +00:00
|
|
|
env MUTTER_DEBUG_DUMMY_MODE_SPECS=${STEAMOS_NESTED_DESKTOP_WIDTH:-1280}x${STEAMOS_NESTED_DESKTOP_HEIGHT:-800} \
|
|
|
|
dbus-run-session -- gnome-shell --nested --wayland
|