blob: abc2c1867f9af1ac16f93a9321050ff6b8335038 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
echo "==>"
echo "==> To enabled lightdm-mini-greeter, change the following config files:"
echo "==>"
echo "==> /etc/lightdm/lightdm.conf"
echo "==> greeter-session = lightdm-mini-greeter"
echo "==> user-session = gnome # Or anything from /usr/share/xsessions"
echo "==>"
echo "==> /etc/lightdm/lightdm-mini-greeter.conf"
echo "==> user = <your_username>"
echo "==>"
echo "==> Then logout & restart lightdm:"
echo "==>"
echo "==> sudo systemctl restart lightdm"
echo "==>"
}
post_upgrade() {
post_install
}
|