aports/community/slim/slim.initd
2024-05-07 20:02:15 +00:00

19 lines
264 B
Bash
Executable File

#!/sbin/openrc-run
depend() {
need localmount dbus
}
start() {
ebegin "Starting slim"
start-stop-daemon --start --quiet --exec /usr/bin/slim -- -d
eend $?
}
stop() {
ebegin "Stopping slim"
start-stop-daemon --stop --quiet --exec /usr/bin/slim
eend $?
}