a5937d1d6d
So that we can be started by systemd --user, instead of gnome-session. There are three units: - gnome-shell.service: Start gnome-shell itself. - gnome-shell-x11.target, gnome-shell-wayland.target: Sync points for units that need to care if x11 or wayland is in use. gnome-settings-daemon will use these, for example. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/138
12 lines
246 B
SYSTEMD
12 lines
246 B
SYSTEMD
[Unit]
|
|
Description=GNOME Shell
|
|
Wants=gnome-session.service
|
|
After=graphical-session-pre.target gnome-session-bus.target
|
|
PartOf=graphical-session.target
|
|
|
|
[Service]
|
|
Type=dbus
|
|
ExecStart=@bindir@/gnome-shell
|
|
Restart=on-failure
|
|
BusName=org.gnome.Shell
|