c5018c2fe7
Following GNOME/gnome-shell!1472. It's been almost three years since ConditionEnvironment was available. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2791>
36 lines
1.2 KiB
SYSTEMD
36 lines
1.2 KiB
SYSTEMD
[Unit]
|
|
Description=GNOME Shell on Wayland
|
|
# On wayland, force a session shutdown
|
|
OnFailure=org.gnome.Shell-disable-extensions.service gnome-session-shutdown.target
|
|
OnFailureJobMode=replace-irreversibly
|
|
CollectMode=inactive-or-failed
|
|
RefuseManualStart=on
|
|
RefuseManualStop=on
|
|
|
|
After=gnome-session-manager.target
|
|
|
|
Requisite=gnome-session-initialized.target
|
|
PartOf=gnome-session-initialized.target
|
|
Before=gnome-session-initialized.target
|
|
|
|
#NOTE: ConditionEnvironment works with systemd >= 246
|
|
ConditionEnvironment=XDG_SESSION_TYPE=%I
|
|
|
|
[Service]
|
|
Slice=session.slice
|
|
Type=notify
|
|
ExecStart=@bindir@/gnome-shell
|
|
# Exit code 1 means we are probably *not* dealing with an extension failure
|
|
SuccessExitStatus=1
|
|
|
|
# unset some environment variables that were set by the shell and won't work now that the shell is gone
|
|
ExecStopPost=-/bin/sh -c 'test "$SERVICE_RESULT" != "exec-condition" && systemctl --user unset-environment GNOME_SETUP_DISPLAY WAYLAND_DISPLAY DISPLAY XAUTHORITY'
|
|
|
|
# On wayland we cannot restart
|
|
Restart=no
|
|
# Kill any stubborn child processes after this long
|
|
TimeoutStopSec=5
|
|
|
|
# Lower down gnome-shell's OOM score to avoid being killed by OOM-killer too early
|
|
OOMScoreAdjust=-1000
|