aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-04-18 23:48:18 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-04-19 00:25:07 +0530
commit430945d42063482cc2485dfec541a851df4f7556 (patch)
tree999b464bf8f4eb6de7d1ef4b43ec99f7581bc8bd
parent9167192d31e5a52880c0207aa3b11f1c02b1504e (diff)
downloadnnn-430945d42063482cc2485dfec541a851df4f7556.tar.gz
Plugin nmount: toggle mount status of a device
-rw-r--r--plugins/README.md1
-rwxr-xr-xplugins/nmount23
2 files changed, 24 insertions, 0 deletions
diff --git a/plugins/README.md b/plugins/README.md
index fa30b32..088496b 100644
--- a/plugins/README.md
+++ b/plugins/README.md
@@ -7,6 +7,7 @@
| imgur | bash | - | Upload an image to imgur (from [imgur-screenshot](https://github.com/jomo/imgur-screenshot)) |
| kdeconnect | sh | kdeconnect-cli | Send selected files to an Android device |
| ndiff | sh | vimdiff | File and directory diff for selection |
+| nmount | sh | pmount | Toggle mount status of a device as normal user |
| nwal | sh | nitrogen | Set the selected image as wallpaper using nitrogen |
| paste | sh | [pastebinit](https://launchpad.net/pastebinit) | Paste contents of current (text) file to paste.ubuntu.com |
| picker | sh | nnn | Pick files and pipe the newline-separated list to another utility |
diff --git a/plugins/nmount b/plugins/nmount
new file mode 100755
index 0000000..a0782e4
--- /dev/null
+++ b/plugins/nmount
@@ -0,0 +1,23 @@
+#!/usr/bin/env sh
+
+# Description: Toggle mount status of a device using pmount
+# If the device is mounted, it will be unmounted and vice versa.
+#
+# Shell: POSIX compliant
+# Author: Arun Prakash Jana
+
+lsblk
+echo
+echo -n "device (e.g. sdc2): "
+read dev
+echo
+
+if grep -qs "$dev " /proc/mounts; then
+ pumount "$dev"
+ echo $dev unmounted.
+else
+ pmount "$dev"
+ echo "$dev" mounted to "$(lsblk -n /dev/"$dev" | rev | cut -d' ' -f1 | rev)".
+fi
+
+read dummy