aboutsummaryrefslogtreecommitdiff
path: root/.scripts/adblock
blob: 3fdbb97b25172bac5f4070dd31cd31ae5e68d3fb (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash

if grep -Fxq "##START" /etc/hosts; then
	sudo sed -i "/##START/,/##END/s/#\(.\)/\1/" /etc/hosts
	notify-send "Enabled adblock!"
else
	sudo sed -i "/#START/,/#END/s/./#&/" /etc/hosts
	notify-send "Disabled adblock!"
fi