1
0
flewkey-overlay/x11-drivers/displaylink-driver/files/dlm.init.d

19 lines
474 B
D
Raw Normal View History

#!/sbin/openrc-run
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="DisplayLink Manager"
description="Driver for modern DisplayLink devices"
dir="/opt/@P@"
start() {
modprobe -q evdi
start-stop-daemon --start --background --chdir /opt/displaylink --make-pidfile --pidfile /run/dlm.pid --exec /opt/displaylink/DisplayLinkManager
eend $?
}
stop() {
start-stop-daemon --stop --pidfile /run/dlm.pid
eend $?
}