gala/data/gala@x11.service.in

41 lines
1001 B
SYSTEMD
Raw Permalink Normal View History

2021-09-29 21:51:50 +03:00
[Unit]
Description=Gala on X11
2023-06-18 19:11:44 +03:00
# On X11, try to show the GNOME Session Failed screen
2021-09-29 21:51:50 +03:00
OnFailure=gnome-session-failed.target
OnFailureJobMode=replace
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
2023-06-18 19:11:44 +03:00
#NOTE: ConditionEnvironment works with systemd >= 246
ConditionEnvironment=XDG_SESSION_TYPE=%I
2021-09-29 21:51:50 +03:00
# Limit startup frequency more than the default
StartLimitIntervalSec=15s
StartLimitBurst=3
[Service]
2023-06-18 19:11:44 +03:00
Slice=session.slice
2021-09-29 21:51:50 +03:00
Type=notify
ExecStart=@bindir@/gala
2023-06-18 19:11:44 +03:00
# On X11 we do not need to unset any variables
# On X11 we want to restart on-success (Alt+F2 + r) and on-failure.
2021-09-29 21:51:50 +03:00
Restart=always
2023-06-18 19:11:44 +03:00
# Do not wait before restarting the shell
2021-09-29 21:51:50 +03:00
RestartSec=0ms
# Kill any stubborn child processes after this long
TimeoutStopSec=5
2023-06-18 19:11:44 +03:00
# Lower down gnome-shell's OOM score to avoid being killed by OOM-killer too early
OOMScoreAdjust=-1000