├── .github └── workflows │ └── build.yml ├── Makefile ├── README.md └── files ├── build_conf.lua ├── clash.conf ├── clash.init ├── clear_rules.sh ├── create_rules.sh └── update_profile.sh /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/README.md -------------------------------------------------------------------------------- /files/build_conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/files/build_conf.lua -------------------------------------------------------------------------------- /files/clash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/files/clash.conf -------------------------------------------------------------------------------- /files/clash.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/files/clash.init -------------------------------------------------------------------------------- /files/clear_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/files/clear_rules.sh -------------------------------------------------------------------------------- /files/create_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/files/create_rules.sh -------------------------------------------------------------------------------- /files/update_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandelures/openwrt-clash/HEAD/files/update_profile.sh --------------------------------------------------------------------------------