summaryrefslogtreecommitdiffstats
path: root/abs/core/plymouth/plymouth.initcpio_hook
blob: d527f240da009a31269bff6d7135232d566d0861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
run_hook() {
        msg -n ":: Loading plymouth..."

        /bin/mknod /dev/fb c 29 0 &>/dev/null
        #/bin/mount devpts /dev/pts -t devpts

        # plymouth deamon
        #/bin/mkdir -p /run/plymouth
        /usr/sbin/plymouthd --mode=boot --pid-file=/run/plymouth.pid

        # plymouth frontend
        /usr/bin/plymouth --show-splash
        msg "done."
}

# vim: set ft=sh: