aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/nmount
blob: 9fb4e9009f830eb910d56002dcb2220f0dfb782d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env sh

# Description: Toggle mount status of a device using pmount
#              If the device is not mounted, it will be mounted.
#              If the device is mounted, it will be unmounted and powered down.
#
#              Runs `lsblk` if 'l' is entered, exits on 'Return`.
#
# Note:
# - The script uses Linux-specific lsblk to list block devices. Alternatives:
#       macOS: "diskutil list"
#       BSD: "geom disk list"
# - The script uses udisksctl (from udisks2) to pwoer down devices. This is also Linux-specific.
#   Users on non-Linux platforms can comment it and use an alterntive to power-down disks.
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana

prompt="device name ['l' lists]: "

lsblk

echo
echo "Make sure you aren't still in the mounted device."
echo -n "$prompt"
read dev

while ! [ -z "$dev" ]
do
    if [ "$dev" = "l" ]; then
        lsblk
    elif [ "$dev" = "q" ]; then
        exit
    else
        if grep -qs "$dev " /proc/mounts; then
            sync
            pumount "$dev"
            if [ "$?" -eq "0" ]; then
                echo "$dev" unmounted.
                udisksctl power-off -b /dev/"$dev"
                if [ "$?" -eq "0" ]; then
                    echo "$dev" ejected.
                fi
            fi
        else
            pmount "$dev"
            echo "$dev" mounted to "$(lsblk -n /dev/"$dev" | rev | cut -d' ' -f1 | rev)".
        fi
    fi

    echo
    echo -n "$prompt"
    read dev
done