15 lines
375 B
Bash
Executable file
15 lines
375 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
die() { echo >&2 "!! $*"; exit 1; }
|
|
|
|
/usr/bin/steamos-session-select gamescope --no-restart
|
|
|
|
# Add back portals removed by gamescope
|
|
systemctl --user set-environment XDG_DESKTOP_PORTAL_DIR=/usr/share/xdg-desktop-portal/portals
|
|
|
|
# Update environment
|
|
dbus-update-activation-environment --systemd DESKTOP_SESSION `env | grep ^XDG_ | cut -d = -f 1`
|
|
|
|
exec $@
|