aboutsummaryrefslogtreecommitdiff
path: root/.scripts/adblock
diff options
context:
space:
mode:
Diffstat (limited to '.scripts/adblock')
-rwxr-xr-x.scripts/adblock10
1 files changed, 10 insertions, 0 deletions
diff --git a/.scripts/adblock b/.scripts/adblock
new file mode 100755
index 0000000..e02cf92
--- /dev/null
+++ b/.scripts/adblock
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+if grep -Fxq "##START" /etc/hosts
+then
+ sudo sed -i "/##START/,/##END/s/#\(.\)/\1/" /etc/hosts
+ echo Enabled adblock!
+else
+ sudo sed -i "/#START/,/#END/s/./#&/" /etc/hosts
+ echo Disabled adblock!
+fi