aboutsummaryrefslogtreecommitdiff
path: root/.scripts/suggestadblock
blob: a2331e4d9fba8cfc980f9bdbca75d47e3b1c9652 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/env bash

export XAUTHORITY=/home/melvin/.Xauthority
export DISPLAY=:0
export XDG_RUNTIME_DIR=/run/user/1000
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus

LIM=30

expiring="$(find $HOME/.cache/adblock_disabled -mmin +$LIM)"
if [ "$expiring" ]; then
	notify-send "Focus" "Adblock länger als $LIM Minuten deaktiviert"
	exit 0
fi