mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-15 19:37:25 +02:00
Signed-off-by: Anna (navi) Figueiredo Gomes <navi@vlhl.dev> Closes: https://github.com/gentoo/gentoo/pull/40896 Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
14 lines
255 B
Text
14 lines
255 B
Text
#!/sbin/openrc-run
|
|
|
|
description="Foot terminal server mode"
|
|
|
|
supervisor=supervise-daemon
|
|
command="/usr/bin/foot"
|
|
command_args="--server"
|
|
|
|
start_pre() {
|
|
if [ -z "$WAYLAND_DISPLAY" ]; then
|
|
eerror "$WAYLAND_DISPLAY unset, can't proceed."
|
|
return 1
|
|
fi
|
|
}
|