├── .github └── workflows │ └── build.yml ├── Makefile ├── README.md ├── docs └── screenshot.png ├── htdocs └── luci-static │ └── resources │ └── view │ └── clash │ ├── logview.js │ └── overview.js └── root └── usr ├── libexec └── rpcd │ └── luci.clash └── share ├── luci └── menu.d │ └── luci-app-simple-clash.json └── rpcd └── acl.d └── luci-app-simple-clash.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /htdocs/luci-static/resources/view/clash/logview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/htdocs/luci-static/resources/view/clash/logview.js -------------------------------------------------------------------------------- /htdocs/luci-static/resources/view/clash/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/htdocs/luci-static/resources/view/clash/overview.js -------------------------------------------------------------------------------- /root/usr/libexec/rpcd/luci.clash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/root/usr/libexec/rpcd/luci.clash -------------------------------------------------------------------------------- /root/usr/share/luci/menu.d/luci-app-simple-clash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/root/usr/share/luci/menu.d/luci-app-simple-clash.json -------------------------------------------------------------------------------- /root/usr/share/rpcd/acl.d/luci-app-simple-clash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/luci-app-simple-clash/HEAD/root/usr/share/rpcd/acl.d/luci-app-simple-clash.json --------------------------------------------------------------------------------