summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-09-04 14:48:40 -0400
committerLuke Smith <luke@lukesmith.xyz>2018-09-04 14:48:40 -0400
commit39a2b97142235e7be70bd3ef30b819dd18514f0f (patch)
tree922e652aaa9c06f72c4a0e51b1fc53c529445dec
parentb6872e4979b746f640fdf17ee0cb49e34587a51c (diff)
downloadeibhear-39a2b97142235e7be70bd3ef30b819dd18514f0f.tar.gz
eibhear-39a2b97142235e7be70bd3ef30b819dd18514f0f.tar.zst
eibhear-39a2b97142235e7be70bd3ef30b819dd18514f0f.zip
`note` documentation
-rw-r--r--.scripts/SCRIPTS.md5
-rwxr-xr-x.scripts/note7
2 files changed, 11 insertions, 1 deletions
diff --git a/.scripts/SCRIPTS.md b/.scripts/SCRIPTS.md
index 1a92c81..7e794c1 100644
--- a/.scripts/SCRIPTS.md
+++ b/.scripts/SCRIPTS.md
@@ -146,6 +146,11 @@ out. User must insert password to unlock.
Some old notes and commands on deleted music shortcuts.
+## `note`
+
+Give this script some text/a message as an argument. It will print it to the
+terminal, and if `dunst` is running, display a notification.
+
## `opout`
"Open output", opens the corresponding `.pdf` file if run on a `.md`, `.tex` or
diff --git a/.scripts/note b/.scripts/note
index 784e64d..a90bff1 100755
--- a/.scripts/note
+++ b/.scripts/note
@@ -1,2 +1,7 @@
-#!/bin/bash
+#!/bin/sh
+
+# A super basic command. Give it some arguments to use as anotification. It
+# will echo them on the terminal, and if you have `dunst` running, will send a
+# `notify-send` message to it.
+
echo "$@" && pgrep -x dunst >/dev/null && notify-send "$@"