Some updates to the environment

* direnv setup
* aoc script
* timer script
This commit is contained in:
2023-12-06 08:59:56 -06:00
parent 32b30b4174
commit 8f97185c39
7 changed files with 253 additions and 29 deletions

11
sbin/timer Executable file
View File

@@ -0,0 +1,11 @@
#!/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"