├── .gitignore ├── LICENSE ├── README.md ├── gmod.sublime-project ├── luci ├── luci-app-redsocks2 │ ├── Makefile │ ├── README.md │ ├── ipkg │ │ └── postinst │ ├── luasrc │ │ ├── controller │ │ │ └── redsocks2.lua │ │ └── model │ │ │ └── cbi │ │ │ └── redsocks2 │ │ │ ├── advanced.lua │ │ │ └── general.lua │ ├── po │ │ └── zh-cn │ │ │ └── redsocks2.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── redsocks2 │ │ ├── init.d │ │ │ └── redsocks2 │ │ └── uci-defaults │ │ │ └── luci-redsocks2 │ │ └── usr │ │ └── share │ │ ├── redsocks2 │ │ └── firewall.include │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-redsocks2.json ├── luci-app-smartdns │ ├── Makefile │ └── files │ │ ├── usr │ │ ├── lib │ │ │ └── lua │ │ │ │ └── luci │ │ │ │ └── i18n │ │ │ │ └── smartdns.zh-cn.lmo │ │ └── share │ │ │ ├── luci │ │ │ └── menu.d │ │ │ │ └── luci-app-smartdns.json │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-smartdns.json │ │ └── www │ │ └── luci-static │ │ └── resources │ │ └── view │ │ └── smartdns │ │ └── smartdns.js ├── luci-app-v2ray-server │ ├── LICENSE │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── v2ray_server.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── v2ray_server │ │ │ │ ├── api │ │ │ │ ├── app.lua │ │ │ │ ├── gen_config.lua │ │ │ │ └── v2ray.lua │ │ │ │ ├── index.lua │ │ │ │ └── user.lua │ │ └── view │ │ │ └── v2ray_server │ │ │ ├── log.htm │ │ │ ├── users_list_status.htm │ │ │ └── v2ray.htm │ ├── po │ │ └── zh-cn │ │ │ └── v2ray_server.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── v2ray_server │ │ ├── init.d │ │ │ └── v2ray_server │ │ └── uci-defaults │ │ │ └── luci-v2ray-server │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-v2ray-server.json ├── luci-app-v2ray │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── i18n-scan.pl │ ├── i18n-update.pl │ ├── luasrc │ │ ├── controller │ │ │ └── v2ray.lua │ │ ├── model │ │ │ ├── cbi │ │ │ │ └── v2ray │ │ │ │ │ ├── about.lua │ │ │ │ │ ├── dns.lua │ │ │ │ │ ├── inbound-detail.lua │ │ │ │ │ ├── inbound-list.lua │ │ │ │ │ ├── main.lua │ │ │ │ │ ├── outbound-detail.lua │ │ │ │ │ ├── outbound-list.lua │ │ │ │ │ ├── policy-level-detail.lua │ │ │ │ │ ├── policy.lua │ │ │ │ │ ├── reverse.lua │ │ │ │ │ ├── routing-rule-detail.lua │ │ │ │ │ ├── routing.lua │ │ │ │ │ └── transparent-proxy.lua │ │ │ └── v2ray.lua │ │ └── view │ │ │ └── v2ray │ │ │ ├── import_outbound.htm │ │ │ ├── list_status.htm │ │ │ └── status_header.htm │ ├── po │ │ ├── templates │ │ │ └── v2ray.pot │ │ ├── zh-cn │ │ │ └── v2ray.po │ │ └── zh_Hans │ │ │ └── v2ray.po │ └── root │ │ └── etc │ │ ├── config │ │ └── v2ray │ │ ├── firewall.v2ray │ │ ├── init.d │ │ └── v2ray │ │ ├── uci-defaults │ │ └── 40_luci-v2ray │ │ └── v2ray │ │ ├── chnroute.txt │ │ ├── chnroute6.txt │ │ ├── directlist.txt │ │ ├── gfwlist.txt │ │ ├── proxylist.txt │ │ ├── srcdirectlist.txt │ │ ├── transport.json │ │ └── upload │ │ └── .gitkeep ├── luci-app-vlmcsd │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── vlmcsd.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── vlmcsd.lua │ │ └── view │ │ │ └── vlmcsd │ │ │ └── vlmcsd_status.htm │ ├── po │ │ └── zh-cn │ │ │ └── vlmcsd.po │ └── root │ │ └── etc │ │ ├── config │ │ └── vlmcsd │ │ ├── init.d │ │ └── kms │ │ └── uci-defaults │ │ └── luci-vlmcsd ├── luci-app-zerotier │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── zerotier.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── zerotier │ │ │ │ ├── info.lua │ │ │ │ └── settings.lua │ │ └── view │ │ │ └── zerotier │ │ │ └── zerotier_status.htm │ ├── po │ │ └── zh-cn │ │ │ └── zerotier.po │ └── root │ │ ├── etc │ │ ├── init.d │ │ │ └── zerotier │ │ ├── uci-defaults │ │ │ └── 40_luci-zerotier │ │ ├── zerotier.start │ │ ├── zerotier.stop │ │ └── zerotier │ │ │ └── zerotier.log │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-zerotier.json ├── luci-proto-n2n │ ├── LICENSE │ ├── Makefile │ └── files │ │ ├── cbi │ │ └── proto_n2n.lua │ │ ├── n2n.sh │ │ └── network │ │ └── proto_n2n.lua ├── luci-theme-argon │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── README_ZH.md │ ├── htdocs │ │ └── luci-static │ │ │ ├── argon │ │ │ ├── background │ │ │ │ └── README.md │ │ │ ├── css │ │ │ │ ├── cascade.css │ │ │ │ ├── dark.css │ │ │ │ ├── fonts.css │ │ │ │ └── pure-min.css │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ │ ├── TypoGraphica.eot │ │ │ │ ├── TypoGraphica.svg │ │ │ │ ├── TypoGraphica.ttf │ │ │ │ ├── TypoGraphica.woff │ │ │ │ ├── argon.eot │ │ │ │ ├── argon.svg │ │ │ │ ├── argon.ttf │ │ │ │ └── argon.woff │ │ │ ├── icon │ │ │ │ ├── android-icon-192x192.png │ │ │ │ ├── apple-icon-144x144.png │ │ │ │ ├── apple-icon-60x60.png │ │ │ │ ├── apple-icon-72x72.png │ │ │ │ ├── arrow.svg │ │ │ │ ├── browserconfig.xml │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ ├── manifest.json │ │ │ │ ├── ms-icon-144x144.png │ │ │ │ └── spinner.svg │ │ │ ├── img │ │ │ │ ├── argon.svg │ │ │ │ ├── bg1.jpg │ │ │ │ ├── blank.png │ │ │ │ ├── volume_high.svg │ │ │ │ └── volume_off.svg │ │ │ ├── js │ │ │ │ ├── jquery.min.js │ │ │ │ └── polyfill.min.js │ │ │ └── less │ │ │ │ ├── cascade.less │ │ │ │ └── dark.less │ │ │ └── resources │ │ │ └── menu.js │ ├── luasrc │ │ └── view │ │ │ └── themes │ │ │ └── argon │ │ │ ├── footer.htm │ │ │ ├── footer_login.htm │ │ │ ├── header.htm │ │ │ ├── header_login.htm │ │ │ ├── out_footer_login.htm │ │ │ ├── out_header_login.htm │ │ │ └── sysauth.htm │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 30_luci-theme-argon └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── package ├── ipt2socks │ └── Makefile ├── n2n │ └── Makefile ├── redsocks2 │ └── Makefile ├── smartdns │ └── Makefile ├── v2ray │ ├── Config.in │ └── Makefile └── vlmcsd │ ├── Makefile │ └── files │ ├── vlmcsd.ini │ └── vlmcsd.init └── scripts ├── gettracker.sh ├── rmoldtorrent.sh ├── smartdnsGuard.sh └── tracker.list /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/README.md -------------------------------------------------------------------------------- /gmod.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/gmod.sublime-project -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/Makefile -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/README.md -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/ipkg/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/ipkg/postinst -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/luasrc/controller/redsocks2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/luasrc/controller/redsocks2.lua -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/luasrc/model/cbi/redsocks2/advanced.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/luasrc/model/cbi/redsocks2/advanced.lua -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/luasrc/model/cbi/redsocks2/general.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/luasrc/model/cbi/redsocks2/general.lua -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/po/zh-cn/redsocks2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/po/zh-cn/redsocks2.po -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/root/etc/config/redsocks2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/root/etc/config/redsocks2 -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/root/etc/init.d/redsocks2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/root/etc/init.d/redsocks2 -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/root/etc/uci-defaults/luci-redsocks2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/root/etc/uci-defaults/luci-redsocks2 -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/root/usr/share/redsocks2/firewall.include: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /etc/init.d/redsocks2 restart 3 | -------------------------------------------------------------------------------- /luci/luci-app-redsocks2/root/usr/share/rpcd/acl.d/luci-app-redsocks2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-redsocks2/root/usr/share/rpcd/acl.d/luci-app-redsocks2.json -------------------------------------------------------------------------------- /luci/luci-app-smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-smartdns/Makefile -------------------------------------------------------------------------------- /luci/luci-app-smartdns/files/usr/lib/lua/luci/i18n/smartdns.zh-cn.lmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-smartdns/files/usr/lib/lua/luci/i18n/smartdns.zh-cn.lmo -------------------------------------------------------------------------------- /luci/luci-app-smartdns/files/usr/share/luci/menu.d/luci-app-smartdns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-smartdns/files/usr/share/luci/menu.d/luci-app-smartdns.json -------------------------------------------------------------------------------- /luci/luci-app-smartdns/files/usr/share/rpcd/acl.d/luci-app-smartdns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-smartdns/files/usr/share/rpcd/acl.d/luci-app-smartdns.json -------------------------------------------------------------------------------- /luci/luci-app-smartdns/files/www/luci-static/resources/view/smartdns/smartdns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-smartdns/files/www/luci-static/resources/view/smartdns/smartdns.js -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/LICENSE -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/Makefile -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/controller/v2ray_server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/controller/v2ray_server.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/api/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/api/app.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/api/gen_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/api/gen_config.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/api/v2ray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/api/v2ray.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/index.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/index.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/user.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/model/cbi/v2ray_server/user.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/view/v2ray_server/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/view/v2ray_server/log.htm -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/view/v2ray_server/users_list_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/view/v2ray_server/users_list_status.htm -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/luasrc/view/v2ray_server/v2ray.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/luasrc/view/v2ray_server/v2ray.htm -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/po/zh-cn/v2ray_server.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/po/zh-cn/v2ray_server.po -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/root/etc/config/v2ray_server: -------------------------------------------------------------------------------- 1 | 2 | config global 3 | option enable '0' 4 | 5 | -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/root/etc/init.d/v2ray_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/root/etc/init.d/v2ray_server -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/root/etc/uci-defaults/luci-v2ray-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/root/etc/uci-defaults/luci-v2ray-server -------------------------------------------------------------------------------- /luci/luci-app-v2ray-server/root/usr/share/rpcd/acl.d/luci-app-v2ray-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray-server/root/usr/share/rpcd/acl.d/luci-app-v2ray-server.json -------------------------------------------------------------------------------- /luci/luci-app-v2ray/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/.editorconfig -------------------------------------------------------------------------------- /luci/luci-app-v2ray/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.po~ 3 | .idea 4 | -------------------------------------------------------------------------------- /luci/luci-app-v2ray/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/.travis.yml -------------------------------------------------------------------------------- /luci/luci-app-v2ray/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/LICENSE -------------------------------------------------------------------------------- /luci/luci-app-v2ray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/Makefile -------------------------------------------------------------------------------- /luci/luci-app-v2ray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/README.md -------------------------------------------------------------------------------- /luci/luci-app-v2ray/i18n-scan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/i18n-scan.pl -------------------------------------------------------------------------------- /luci/luci-app-v2ray/i18n-update.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/i18n-update.pl -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/controller/v2ray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/controller/v2ray.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/about.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/about.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/dns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/dns.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/inbound-detail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/inbound-detail.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/inbound-list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/inbound-list.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/main.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/outbound-detail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/outbound-detail.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/outbound-list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/outbound-list.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/policy-level-detail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/policy-level-detail.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/policy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/policy.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/reverse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/reverse.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/routing-rule-detail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/routing-rule-detail.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/routing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/routing.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/cbi/v2ray/transparent-proxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/cbi/v2ray/transparent-proxy.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/model/v2ray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/model/v2ray.lua -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/view/v2ray/import_outbound.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/view/v2ray/import_outbound.htm -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/view/v2ray/list_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/view/v2ray/list_status.htm -------------------------------------------------------------------------------- /luci/luci-app-v2ray/luasrc/view/v2ray/status_header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/luasrc/view/v2ray/status_header.htm -------------------------------------------------------------------------------- /luci/luci-app-v2ray/po/templates/v2ray.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/po/templates/v2ray.pot -------------------------------------------------------------------------------- /luci/luci-app-v2ray/po/zh-cn/v2ray.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/po/zh-cn/v2ray.po -------------------------------------------------------------------------------- /luci/luci-app-v2ray/po/zh_Hans/v2ray.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/po/zh_Hans/v2ray.po -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/config/v2ray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/root/etc/config/v2ray -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/firewall.v2ray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/root/etc/firewall.v2ray -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/init.d/v2ray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/root/etc/init.d/v2ray -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/uci-defaults/40_luci-v2ray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/root/etc/uci-defaults/40_luci-v2ray -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/v2ray/chnroute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/root/etc/v2ray/chnroute.txt -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/v2ray/chnroute6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/root/etc/v2ray/chnroute6.txt -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/v2ray/directlist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/v2ray/gfwlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-v2ray/root/etc/v2ray/gfwlist.txt -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/v2ray/proxylist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/v2ray/srcdirectlist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/v2ray/transport.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci/luci-app-v2ray/root/etc/v2ray/upload/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci/luci-app-vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-vlmcsd/Makefile -------------------------------------------------------------------------------- /luci/luci-app-vlmcsd/luasrc/controller/vlmcsd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-vlmcsd/luasrc/controller/vlmcsd.lua -------------------------------------------------------------------------------- /luci/luci-app-vlmcsd/luasrc/model/cbi/vlmcsd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-vlmcsd/luasrc/model/cbi/vlmcsd.lua -------------------------------------------------------------------------------- /luci/luci-app-vlmcsd/luasrc/view/vlmcsd/vlmcsd_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-vlmcsd/luasrc/view/vlmcsd/vlmcsd_status.htm -------------------------------------------------------------------------------- /luci/luci-app-vlmcsd/po/zh-cn/vlmcsd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-vlmcsd/po/zh-cn/vlmcsd.po -------------------------------------------------------------------------------- /luci/luci-app-vlmcsd/root/etc/config/vlmcsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-vlmcsd/root/etc/config/vlmcsd -------------------------------------------------------------------------------- /luci/luci-app-vlmcsd/root/etc/init.d/kms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-vlmcsd/root/etc/init.d/kms -------------------------------------------------------------------------------- /luci/luci-app-vlmcsd/root/etc/uci-defaults/luci-vlmcsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-vlmcsd/root/etc/uci-defaults/luci-vlmcsd -------------------------------------------------------------------------------- /luci/luci-app-zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/Makefile -------------------------------------------------------------------------------- /luci/luci-app-zerotier/luasrc/controller/zerotier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/luasrc/controller/zerotier.lua -------------------------------------------------------------------------------- /luci/luci-app-zerotier/luasrc/model/cbi/zerotier/info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/luasrc/model/cbi/zerotier/info.lua -------------------------------------------------------------------------------- /luci/luci-app-zerotier/luasrc/model/cbi/zerotier/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/luasrc/model/cbi/zerotier/settings.lua -------------------------------------------------------------------------------- /luci/luci-app-zerotier/luasrc/view/zerotier/zerotier_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/luasrc/view/zerotier/zerotier_status.htm -------------------------------------------------------------------------------- /luci/luci-app-zerotier/po/zh-cn/zerotier.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/po/zh-cn/zerotier.po -------------------------------------------------------------------------------- /luci/luci-app-zerotier/root/etc/init.d/zerotier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/root/etc/init.d/zerotier -------------------------------------------------------------------------------- /luci/luci-app-zerotier/root/etc/uci-defaults/40_luci-zerotier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/root/etc/uci-defaults/40_luci-zerotier -------------------------------------------------------------------------------- /luci/luci-app-zerotier/root/etc/zerotier.start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/root/etc/zerotier.start -------------------------------------------------------------------------------- /luci/luci-app-zerotier/root/etc/zerotier.stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/root/etc/zerotier.stop -------------------------------------------------------------------------------- /luci/luci-app-zerotier/root/etc/zerotier/zerotier.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci/luci-app-zerotier/root/usr/share/rpcd/acl.d/luci-app-zerotier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-app-zerotier/root/usr/share/rpcd/acl.d/luci-app-zerotier.json -------------------------------------------------------------------------------- /luci/luci-proto-n2n/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-proto-n2n/LICENSE -------------------------------------------------------------------------------- /luci/luci-proto-n2n/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-proto-n2n/Makefile -------------------------------------------------------------------------------- /luci/luci-proto-n2n/files/cbi/proto_n2n.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-proto-n2n/files/cbi/proto_n2n.lua -------------------------------------------------------------------------------- /luci/luci-proto-n2n/files/n2n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-proto-n2n/files/n2n.sh -------------------------------------------------------------------------------- /luci/luci-proto-n2n/files/network/proto_n2n.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-proto-n2n/files/network/proto_n2n.lua -------------------------------------------------------------------------------- /luci/luci-theme-argon/.gitignore: -------------------------------------------------------------------------------- 1 | Screenshots 2 | -------------------------------------------------------------------------------- /luci/luci-theme-argon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/Makefile -------------------------------------------------------------------------------- /luci/luci-theme-argon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/README.md -------------------------------------------------------------------------------- /luci/luci-theme-argon/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/README_ZH.md -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/background/README.md: -------------------------------------------------------------------------------- 1 | Drop background here! 2 | accept jpg png gif and mp4 3 | -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/css/cascade.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/css/cascade.css -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/css/dark.css -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/css/fonts.css -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/css/pure-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/css/pure-min.css -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/favicon.ico -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/fonts/TypoGraphica.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/fonts/TypoGraphica.eot -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/fonts/TypoGraphica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/fonts/TypoGraphica.svg -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/fonts/TypoGraphica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/fonts/TypoGraphica.ttf -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/fonts/TypoGraphica.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/fonts/TypoGraphica.woff -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/fonts/argon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/fonts/argon.eot -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/fonts/argon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/fonts/argon.svg -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/fonts/argon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/fonts/argon.ttf -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/fonts/argon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/fonts/argon.woff -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/android-icon-192x192.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/apple-icon-144x144.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/apple-icon-60x60.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/apple-icon-72x72.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/arrow.svg -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/browserconfig.xml -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/favicon-16x16.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/favicon-32x32.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/favicon-96x96.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/manifest.json -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/ms-icon-144x144.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/icon/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/icon/spinner.svg -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/img/argon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/img/argon.svg -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/img/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/img/bg1.jpg -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/img/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/img/blank.png -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/img/volume_high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/img/volume_high.svg -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/img/volume_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/img/volume_off.svg -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/js/jquery.min.js -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/js/polyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/js/polyfill.min.js -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/less/cascade.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/less/cascade.less -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/argon/less/dark.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/argon/less/dark.less -------------------------------------------------------------------------------- /luci/luci-theme-argon/htdocs/luci-static/resources/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/htdocs/luci-static/resources/menu.js -------------------------------------------------------------------------------- /luci/luci-theme-argon/luasrc/view/themes/argon/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/luasrc/view/themes/argon/footer.htm -------------------------------------------------------------------------------- /luci/luci-theme-argon/luasrc/view/themes/argon/footer_login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/luasrc/view/themes/argon/footer_login.htm -------------------------------------------------------------------------------- /luci/luci-theme-argon/luasrc/view/themes/argon/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/luasrc/view/themes/argon/header.htm -------------------------------------------------------------------------------- /luci/luci-theme-argon/luasrc/view/themes/argon/header_login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/luasrc/view/themes/argon/header_login.htm -------------------------------------------------------------------------------- /luci/luci-theme-argon/luasrc/view/themes/argon/out_footer_login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/luasrc/view/themes/argon/out_footer_login.htm -------------------------------------------------------------------------------- /luci/luci-theme-argon/luasrc/view/themes/argon/out_header_login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/luasrc/view/themes/argon/out_header_login.htm -------------------------------------------------------------------------------- /luci/luci-theme-argon/luasrc/view/themes/argon/sysauth.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/luasrc/view/themes/argon/sysauth.htm -------------------------------------------------------------------------------- /luci/luci-theme-argon/root/etc/uci-defaults/30_luci-theme-argon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/luci-theme-argon/root/etc/uci-defaults/30_luci-theme-argon -------------------------------------------------------------------------------- /luci/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci/tools/po2lmo/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/tools/po2lmo/src/template_lmo.c -------------------------------------------------------------------------------- /luci/tools/po2lmo/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/luci/tools/po2lmo/src/template_lmo.h -------------------------------------------------------------------------------- /package/ipt2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/ipt2socks/Makefile -------------------------------------------------------------------------------- /package/n2n/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/n2n/Makefile -------------------------------------------------------------------------------- /package/redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/redsocks2/Makefile -------------------------------------------------------------------------------- /package/smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/smartdns/Makefile -------------------------------------------------------------------------------- /package/v2ray/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/v2ray/Config.in -------------------------------------------------------------------------------- /package/v2ray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/v2ray/Makefile -------------------------------------------------------------------------------- /package/vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/vlmcsd/Makefile -------------------------------------------------------------------------------- /package/vlmcsd/files/vlmcsd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/vlmcsd/files/vlmcsd.ini -------------------------------------------------------------------------------- /package/vlmcsd/files/vlmcsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/package/vlmcsd/files/vlmcsd.init -------------------------------------------------------------------------------- /scripts/gettracker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/scripts/gettracker.sh -------------------------------------------------------------------------------- /scripts/rmoldtorrent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/scripts/rmoldtorrent.sh -------------------------------------------------------------------------------- /scripts/smartdnsGuard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/scripts/smartdnsGuard.sh -------------------------------------------------------------------------------- /scripts/tracker.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/openwrt-gmod/HEAD/scripts/tracker.list --------------------------------------------------------------------------------