15 lines
188 B
Plaintext
Executable File
15 lines
188 B
Plaintext
Executable File
#!/usr/bin/env watchman
|
|
|
|
service_command='/bin/alsactl'
|
|
service_args="daemon"
|
|
|
|
start() {
|
|
"$service_command" restore
|
|
watchman.start
|
|
}
|
|
|
|
stop() {
|
|
watchman.stop
|
|
"$service_command" store
|
|
}
|