fe29c9ab34
If pbsplash is running when a display manager starts it often causes issues as display managers want to run on a particular VT, but are unable to switch the active VT since pbsplash has exclusive control of the framebuffer. Making DMs not start until after local would solve the issue but it would also needlessly delay the boot process. Until we have a better way to detect display managers starting and react to it, this will at least get devices working again. Though due to how openrc resolves service start order it may mean the splash is killed earlier than necessary.
12 lines
253 B
Text
12 lines
253 B
Text
#!/sbin/openrc-run
|
|
# Copyright 2023 Caleb Connolly
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
name="kill-pbsplash"
|
|
description="Stop the splash animation"
|
|
|
|
command="/usr/bin/killall"
|
|
command_args="pbsplash"
|
|
|
|
depend() {
|
|
before display-manager
|
|
}
|