dotfiles/.local/bin/scripts/netkeeper

14 lines
521 B
Plaintext
Raw Normal View History

2022-05-19 09:42:01 +00:00
#!/bin/sh -e
# Keeps the Internet at bay
2022-09-03 18:07:05 +00:00
if test -e "$JOURNAL"; then
echo "What do you want to do? Check your journal!" >&2
2022-09-03 18:07:05 +00:00
while test $(echo "$intention" | wc -c) -lt 10
do read intention
done
jrnl intentions "$intention"
sudo nft flush chain inet filter outall
2022-10-04 07:24:23 +00:00
sudo nft add rule inet filter outall meta hour "$(date +%H:%M)"-"$(date +%H:%M --date="${1:-10}min")" accept
2022-09-03 18:07:05 +00:00
#expr \( "$1" \> 40 \) \* 10 \| "$1"
2023-02-07 12:19:34 +00:00
apprise $(pass service/apprise/intentions | head -1) -t 'janeks intention' -b "$intention"
2022-09-03 18:07:05 +00:00
fi