blob: 49b9820f24a498d783386de2205dcac2760c29e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
diff --git a/systemd/plymouth-lite-start.service b/systemd/plymouth-lite-start.service
index bed69ac..fb377f3 100644
--- a/systemd/plymouth-lite-start.service
+++ b/systemd/plymouth-lite-start.service
@@ -2,9 +2,12 @@
Description=Show Plymouth-lite Start Screen
DefaultDependencies=no
After=systemd-vconsole-setup.service
-Before=sysinit.target
+Before=kodi.service
[Service]
Type=oneshot
RemainAfterExit=yes
-ExecStart=/usr/bin/ply-image /usr/share/plymouth/splash.png
+ExecStart=/usr/bin/echo 0 > /sys/class/graphics/fbcon/cursor_blink ; /usr/bin/echo 0 > /sys/devices/virtual/graphics/fbcon/cursor_blink ; /usr/bin/chvt 7 ; /usr/bin/ply-image
+
+[Install]
+WantedBy=multi-user.target
|