mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
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
11 lines
246 B
SYSTEMD
11 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
|