summaryrefslogtreecommitdiffstats
path: root/src/basic/plymouth-util.c
blob: 2023ec36711023ae4de009d7ee74f7a962a29317 (plain)
1
2
3
4
5
6
7
8
9
/* SPDX-License-Identifier: LGPL-2.1+ */

#include <unistd.h>

#include "plymouth-util.h"

bool plymouth_running(void) {
        return access("/run/plymouth/pid", F_OK) >= 0;
}