README.md (823B)
1 ### Linux, MacOS 2 Append the content to your system hosts file: 3 ```bash 4 sudo cat hosts >> /etc/hosts 5 ``` 6 7 ### Windows 8 Manually place the domains into: 9 ``` 10 C:\Windows\System32\drivers\etc\hosts 11 ``` 12 13 ### Android (rooted) 14 1. Enable `USB debugging` and `Rooted debugging` in developer settings. 15 2. Install `adb` on your computer: 16 17 ```bash 18 sudo pacman -S adb 19 ``` 20 21 3. Connect phone, tablet, etc and push your local hosts file: 22 ```bash 23 adb root 24 adb remount 25 adb push /etc/hosts /system/etc 26 ``` 27 28 #### Android (non-rooted) 29 1. Install DNSnet and add the domain in the hosts tab. 30 31 ### IOS (irreversible) 32 1. Go to: `Settings > Screen Time > Communication Safety` 33 2. Enable desired filters and blindly set a password 34 3. ⚠️ This cannot be undone unless you call [Apple Support](https://support.apple.com/) 35