dgy
/
hexagons
Archived
1
0
Fork 0
This repository has been archived on 2021-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
hexagons/.local/bin/pom

13 lines
365 B
Bash
Executable File

#!/usr/bin/env bash
set -euf -o pipefail
TITLE="Tomatimer!"
ICON1="$HOME/img/.icn/tomate1.png"
ICON2="$HOME/img/.icn/tomate2.png"
BEEP="paplay ~/snd/.notification.ogg"
TIMER=1800
notify-send "$TITLE" --icon="$ICON2" "Te aviso en $((TIMER/60)) minutos :)"
eval "(sleep $TIMER && notify-send '$TITLE' --icon=$ICON1 'Hora del recreo. Sali de la compu' && $BEEP &)"