mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-06 02:54:23 +02:00
14 lines
260 B
Bash
14 lines
260 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="Dynamic output configuration deamon for Wayland"
|
|
|
|
command="/usr/bin/kanshi"
|
|
supervisor=supervise-daemon
|
|
|
|
extra_started_commands="reload"
|
|
|
|
reload() {
|
|
ebegin "Reloading $name configuration"
|
|
/usr/bin/kanshictl reload
|
|
eend $?
|
|
}
|