blob: 2e65676860acad0225ea75ed0250b775206227f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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 "==>"
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
}
|