aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-12 00:56:39 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-12 07:24:22 +0530
commitf95ee54870e2259e9384c6f5641cb6d374526a65 (patch)
treeb4e2007429edac90ef8a7fbb38ab0464e6adae53 /plugins
parentb64df85d23ad186b036683b79db1c6aaf9da523b (diff)
downloadnnn-f95ee54870e2259e9384c6f5641cb6d374526a65.tar.gz
Add plugin to show notification
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/.notify20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/.notify b/plugins/.notify
new file mode 100755
index 0000000..fe0e18a
--- /dev/null
+++ b/plugins/.notify
@@ -0,0 +1,20 @@
+#!/usr/bin/env sh
+
+# Description: Show a notification
+#
+# Details: nnn invokes this plugin to show notification when a cp/mv/rm operation is complete.
+#
+# Requires: notify-send (Ubuntu)/ntfy (https://github.com/dschep/ntfy)/osascript (macOS)
+#
+# Shell: POSIX compliant
+# Author: Anna Arad
+
+OS="$(uname)"
+
+if which notify-send >/dev/null 2>&1; then
+ notify-send nnn "Done!"
+elif [ "$OS" = "Darwin" ]; then
+ osascript -e 'display notification "Done!" with title "nnn"'
+elif which ntfy >/dev/null 2>&1; then
+ ntfy -t nnn send "Done!"
+fi