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
|
2022-10-13 19:57:22 +00:00
|
|
|
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"
|
2023-01-31 17:58:36 +00:00
|
|
|
apprise $(pass service/apprise/intentions) -t 'janeks intention' -b "$intention"
|
2022-09-03 18:07:05 +00:00
|
|
|
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"
|
|
|
|
fi
|