mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-02 12:18:41 -05:00
10 lines
657 B
Bash
10 lines
657 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Blocked hosts for Qutebrowser
|
||
|
# run this as crontab to update blocked hosts list regularly (daily)
|
||
|
# eg: @weekly ~/.local/bin/garbage/blockedhost_update.sh
|
||
|
|
||
|
curl -fsLo ~/.config/qutebrowser/blockedHosts https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/thirdparties/www.malwaredomainlist.com/hostslist/hosts.txt
|
||
|
curl -fs https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/thirdparties/www.malwaredomainlist.com/hostslist/hosts.txt >> ~/.config/qutebrowser/blockedHosts
|
||
|
curl -fs https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/thirdparties/hosts-file.net/ad_servers.txt >> ~/.config/qutebrowser/blockedHosts
|