mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 12:03:02 -04:00
24 lines
436 B
Plaintext
24 lines
436 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
# This section is kindly copied from display-manager-init
|
|
depend() {
|
|
need localmount
|
|
|
|
after bootmisc consolefont modules netmount
|
|
after readahead-list ypbind autofs openvpn gpm lircmd
|
|
after quota keymaps
|
|
after elogind
|
|
after sssd
|
|
before alsasound
|
|
|
|
use dbus xfs
|
|
}
|
|
|
|
start() {
|
|
tty=7
|
|
start-stop-daemon --start --background \
|
|
--exec "/usr/bin/openvt" -- --console ${tty} --switch -- /usr/bin/lemurs
|
|
|
|
eend $?
|
|
}
|