mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
12 lines
199 B
Text
12 lines
199 B
Text
|
#!/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
|