1
0
flewkey-overlay/x11-drivers/displaylink-driver/files/dlm.init.d
Ryan Fox 5b587dee5f
x11-drivers/displaylink-driver: New package
This might have some issues. If so, let me know.

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ryan Fox <flewkey@2a03.party>
2021-10-10 15:23:49 -07:00

19 lines
454 B
D

#!/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 ${dir} --make-pidfile --pidfile /run/dlm.pid --exec ${dir}/DisplayLinkManager
eend $?
}
stop() {
start-stop-daemon --stop --pidfile /run/dlm.pid
eend $?
}