]> Sergey Matveev's repositories - nnn.git/commitdiff
Plugin nmount: toggle mount status of a device
authorArun Prakash Jana <engineerarun@gmail.com>
Thu, 18 Apr 2019 18:18:18 +0000 (23:48 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Thu, 18 Apr 2019 18:55:07 +0000 (00:25 +0530)
plugins/README.md
plugins/nmount [new file with mode: 0755]

index fa30b3297b718df0aa65199bd6cf1c962cca25da..088496b7f110607e0028f05bf9067a66d6a5b620 100644 (file)
@@ -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 (executable)
index 0000000..a0782e4
--- /dev/null
@@ -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