16 lines
347 B
Text
16 lines
347 B
Text
#!/sbin/openrc-run
|
|
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
name="keyd daemon"
|
|
description=""
|
|
command=/usr/bin/keyd
|
|
command_args="${keyd_args}"
|
|
command_background=true
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
start_stop_daemon_args='-N -20'
|
|
|
|
depend() {
|
|
need localmount
|
|
before display-manager
|
|
}
|