12 lines
150 B
Bash
Executable File
12 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TIME=1
|
|
if [[ $# -ne 0 ]]; then
|
|
TIME=$1
|
|
fi
|
|
sleep ${TIME}m
|
|
|
|
notify-send -i $AOCROOT/favicon.png "Timer has expired"
|
|
echo "Done Waiting"
|
|
|