mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
7bf1de94f5
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
11 lines
199 B
Bash
11 lines
199 B
Bash
#!/bin/bash
|
|
|
|
# /etc/rc.d/rc.4.greetd
|
|
# Rename this script /etc/rc.d/rc.4.local
|
|
# and make it executable and it will be used instead:
|
|
|
|
if [ -x /usr/bin/greetd ]; then
|
|
exec /usr/bin/greetd
|
|
fi
|
|
|
|
# EOF
|