14 lines
423 B
SYSTEMD
14 lines
423 B
SYSTEMD
[Unit]
|
|
Description=Init neptune gdm session conf
|
|
ConditionPathExists=!/var/lib/AccountsService/users/neptune
|
|
Before=gdm.service
|
|
|
|
[Service]
|
|
Type=service
|
|
ExecStart=/bin/sh -c ' \
|
|
echo -e "[User]\nSession=neptune-%i\nXSession=neptune-xorg\nPasswordHint=\nIcon=/var/lib/AccountsService/icons/guest\nSystemAccount=false\n" \
|
|
> /var/lib/AccountsService/users/neptune'
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |