mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-18 05:15:28 +08:00
15 lines
154 B
Plaintext
15 lines
154 B
Plaintext
![]() |
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=99
|
||
|
STOP=99
|
||
|
|
||
|
SCRIPTS_BASE=/lib/k3screenctrl/
|
||
|
|
||
|
start() {
|
||
|
/usr/bin/k3screenctrl &
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall k3screenctrl
|
||
|
}
|