]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/plymouth-util.c
2023ec36711023ae4de009d7ee74f7a962a29317
[thirdparty/systemd.git] / src / basic / plymouth-util.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <unistd.h>
4
5 #include "plymouth-util.h"
6
7 bool plymouth_running(void) {
8 return access("/run/plymouth/pid", F_OK) >= 0;
9 }