mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-11 13:52:06 +01:00
Change the home directory of user "lightdm" to make gsettings persistent. E.g. slick-greeter uses them to store the state of the accessibility checkboxes in the top bar.
9 lines
150 B
Bash
9 lines
150 B
Bash
#!/bin/sh
|
|
|
|
name=lightdm
|
|
|
|
addgroup -S $name 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/lightdm -s /bin/false -G $name -g $name $name 2>/dev/null
|
|
|
|
exit 0
|