Commit
+10 -0 +/-4 browse
1 | diff --git a/README.md b/README.md |
2 | index 3a1f32b..e1ea9fc 100644 |
3 | --- a/README.md |
4 | +++ b/README.md |
5 | @@ -90,6 +90,8 @@ if [ "$POMO_STATE" == "COMPLETE" ] ; then |
6 | fi |
7 | ``` |
8 | |
9 | + See the `contrib` directory for user contributed scripts for use with `onEvent`. |
10 | + |
11 | ## Integrations |
12 | |
13 | By default pomo will setup a Unix socket and serve it's status there. |
14 | diff --git a/contrib/.gitkeep b/contrib/.gitkeep |
15 | new file mode 100644 |
16 | index 0000000..e69de29 |
17 | --- /dev/null |
18 | +++ b/contrib/.gitkeep |
19 | diff --git a/contrib/bell b/contrib/bell |
20 | new file mode 100755 |
21 | index 0000000..b4c6e8f |
22 | --- /dev/null |
23 | +++ b/contrib/bell |
24 | @@ -0,0 +1,3 @@ |
25 | + #!/bin/sh |
26 | + |
27 | + echo -e '\e' |
28 | diff --git a/contrib/pomonag b/contrib/pomonag |
29 | new file mode 100755 |
30 | index 0000000..4259c6e |
31 | --- /dev/null |
32 | +++ b/contrib/pomonag |
33 | @@ -0,0 +1,5 @@ |
34 | + #!/bin/sh |
35 | + |
36 | + if [ "$POMO_STATE" == "BREAKING" ] ; then |
37 | + swaynag -m "It's time to take a break!" |
38 | + fi |