├── LICENSE ├── Makefile ├── README.md ├── luasrc ├── controller │ └── k3screenctrl.lua └── model │ └── cbi │ └── k3screenctrl.lua ├── po ├── zh-cn │ └── k3screenctrl.po └── zh_Hans └── root ├── etc └── uci-defaults │ └── luci-k3screenctrl └── usr └── share └── rpcd └── acl.d └── luci-app-k3screenctrl.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hill-98/luci-app-k3screenctrl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hill-98/luci-app-k3screenctrl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hill-98/luci-app-k3screenctrl/HEAD/README.md -------------------------------------------------------------------------------- /luasrc/controller/k3screenctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hill-98/luci-app-k3screenctrl/HEAD/luasrc/controller/k3screenctrl.lua -------------------------------------------------------------------------------- /luasrc/model/cbi/k3screenctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hill-98/luci-app-k3screenctrl/HEAD/luasrc/model/cbi/k3screenctrl.lua -------------------------------------------------------------------------------- /po/zh-cn/k3screenctrl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hill-98/luci-app-k3screenctrl/HEAD/po/zh-cn/k3screenctrl.po -------------------------------------------------------------------------------- /po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /root/etc/uci-defaults/luci-k3screenctrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hill-98/luci-app-k3screenctrl/HEAD/root/etc/uci-defaults/luci-k3screenctrl -------------------------------------------------------------------------------- /root/usr/share/rpcd/acl.d/luci-app-k3screenctrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hill-98/luci-app-k3screenctrl/HEAD/root/usr/share/rpcd/acl.d/luci-app-k3screenctrl.json --------------------------------------------------------------------------------