adds contrib dir for user contributed scripts
This commit is contained in:
parent
81cb8f568f
commit
f86c5a6436
|
@ -90,6 +90,8 @@ if [ "$POMO_STATE" == "COMPLETE" ] ; then
|
||||||
fi
|
fi
|
||||||
```
|
```
|
||||||
|
|
||||||
|
See the `contrib` directory for user contributed scripts for use with `onEvent`.
|
||||||
|
|
||||||
## Integrations
|
## Integrations
|
||||||
|
|
||||||
By default pomo will setup a Unix socket and serve it's status there.
|
By default pomo will setup a Unix socket and serve it's status there.
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
echo -e '\e'
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ "$POMO_STATE" == "BREAKING" ] ; then
|
||||||
|
swaynag -m "It's time to take a break!"
|
||||||
|
fi
|
Loading…
Reference in New Issue