mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
15 lines
154 B
Bash
Executable File
15 lines
154 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
STOP=99
|
|
|
|
SCRIPTS_BASE=/lib/k3screenctrl/
|
|
|
|
start() {
|
|
/usr/bin/k3screenctrl &
|
|
}
|
|
|
|
stop() {
|
|
killall k3screenctrl
|
|
}
|