adds contrib dir for user contributed scripts

This commit is contained in:
Sam Boysel 2022-05-31 18:10:10 -07:00
parent 81cb8f568f
commit f86c5a6436
4 changed files with 10 additions and 0 deletions

View File

@ -90,6 +90,8 @@ if [ "$POMO_STATE" == "COMPLETE" ] ; then
fi
```
See the `contrib` directory for user contributed scripts for use with `onEvent`.
## Integrations
By default pomo will setup a Unix socket and serve it's status there.

0
contrib/.gitkeep Normal file
View File

3
contrib/bell Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo -e '\e'

5
contrib/pomonag Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
if [ "$POMO_STATE" == "BREAKING" ] ; then
swaynag -m "It's time to take a break!"
fi