Re: Missing OpenRC scripts
Reply #1 –
sddm.
I start sddm directly, and do not use xdm nor xdm-setup. Simpler, if no need for xdm.
My own personal sddm open-rc script, copied mostly from xdm, works:
#!/usr/bin/openrc-run
# DXR sddm
# This is a custom init script to start sddm directly; without the use of xdm.
# Simply place this script in /etc/init.d and set it to run via rc-update.
# Set xdm and xdm-setup to NOT run via rc-update.
description="DXR sddm"
command="/usr/bin/sddm"
#DXR DONT BELIEVE THERE ARE ANY command_args=""
pidfile="/run/sddm.pid"
#DXR from xdm
start_stop_daemon_args="-m --background"
#DXR COPIED FROM xdm
depend() {
need localmount
# this should start as early as possible
after bootmisc consolefont modules netmount
after readahead-list ypbind autofs openvpn gpm lircmd
after quota keymaps
before alsasound
# Start before X
use elogind dbus xfs
}