diff options
author | Sam Chudnick <sam@chudnick.com> | 2021-11-06 20:25:45 -0400 |
---|---|---|
committer | Sam Chudnick <sam@chudnick.com> | 2021-11-06 20:25:45 -0400 |
commit | 82df70eff06e7b44ee84283070d7f801f7fc1d92 (patch) | |
tree | d17ea9cc6e012b16ff0cdeffcf4a97b5e5cd2d11 /.local/bin/dmenu/mount-device |
initial commit
Diffstat (limited to '.local/bin/dmenu/mount-device')
-rwxr-xr-x | .local/bin/dmenu/mount-device | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.local/bin/dmenu/mount-device b/.local/bin/dmenu/mount-device new file mode 100755 index 0000000..e325a65 --- /dev/null +++ b/.local/bin/dmenu/mount-device | |||
@@ -0,0 +1,27 @@ | |||
1 | #!/bin/sh | ||
2 | # Script for mounting block devices | ||
3 | |||
4 | # Set askpass program for authentication | ||
5 | export SUDO_ASKPASS=/usr/bin/ssh-askpass | ||
6 | |||
7 | # Check for and get device to mount from user | ||
8 | devs="$(lsblk -lp | grep "part $" | awk '{print $1,"-",$4}')" | ||
9 | [ "$devs" = "" ] && exit 0 | ||
10 | dev="$(echo $devs | dmenu -i -p "Select device" | cut -d ' ' -f 1)" | ||
11 | [ "$dev" = "" ] && exit 0 | ||
12 | |||
13 | # Attempt to mount without mountpoint for devices in /etc/fstab | ||
14 | sudo -A mount "$dev" 2>/dev/null && exit 0 | ||
15 | |||
16 | # Get mountpoint from user | ||
17 | mntpnt="$(find /mnt -maxdepth 3 -type d 2>/dev/null | dmenu -i -p "Select mountpoint")" | ||
18 | [ "$mntpnt" = "" ] && exit 1 | ||
19 | |||
20 | # If selected mountpoint does not exist ask to create it | ||
21 | # If user decides not to create non-existent drive, exit | ||
22 | [ ! -d $mntpnt ] && create="$(echo "No\nYes" | \ | ||
23 | dmenu -i -p "$mntpnt does not exist, would you like to create it?")" && \ | ||
24 | ([ "$create" = "Yes" ] && sudo -A mkdir -p $mntpnt || exit 0) | ||
25 | |||
26 | sudo -A mount $dev $mntpnt && pgrep -x dunst && notify-send "$dev mounted to $mntpnt" | ||
27 | |||