├── .github └── workflows │ └── Hosts.yml ├── EpicHosts.txt ├── GithubHosts.txt ├── MicrosoftHosts.txt ├── README.md ├── SteamDomains.txt ├── hosts.txt └── workingDir ├── EpicDomains ├── EpicHosts.sh ├── GithubDomains ├── GithubHosts.sh ├── Hosts.sh ├── MicrosoftDomains ├── MicrosoftHosts.sh ├── SteamDomains ├── SteamDomains.sh ├── ph.py ├── requirements └── runAllShellScript.sh /.github/workflows/Hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/.github/workflows/Hosts.yml -------------------------------------------------------------------------------- /EpicHosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/EpicHosts.txt -------------------------------------------------------------------------------- /GithubHosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/GithubHosts.txt -------------------------------------------------------------------------------- /MicrosoftHosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/MicrosoftHosts.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/README.md -------------------------------------------------------------------------------- /SteamDomains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/SteamDomains.txt -------------------------------------------------------------------------------- /hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/hosts.txt -------------------------------------------------------------------------------- /workingDir/EpicDomains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/EpicDomains -------------------------------------------------------------------------------- /workingDir/EpicHosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/EpicHosts.sh -------------------------------------------------------------------------------- /workingDir/GithubDomains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/GithubDomains -------------------------------------------------------------------------------- /workingDir/GithubHosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/GithubHosts.sh -------------------------------------------------------------------------------- /workingDir/Hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/Hosts.sh -------------------------------------------------------------------------------- /workingDir/MicrosoftDomains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/MicrosoftDomains -------------------------------------------------------------------------------- /workingDir/MicrosoftHosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/MicrosoftHosts.sh -------------------------------------------------------------------------------- /workingDir/SteamDomains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/SteamDomains -------------------------------------------------------------------------------- /workingDir/SteamDomains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/SteamDomains.sh -------------------------------------------------------------------------------- /workingDir/ph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/ph.py -------------------------------------------------------------------------------- /workingDir/requirements: -------------------------------------------------------------------------------- 1 | rich==10.2.2 2 | -------------------------------------------------------------------------------- /workingDir/runAllShellScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohyC/Hosts/HEAD/workingDir/runAllShellScript.sh --------------------------------------------------------------------------------