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