diff options
Diffstat (limited to '.local/bin/dmenu/unmount-device')
| -rwxr-xr-x | .local/bin/dmenu/unmount-device | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.local/bin/dmenu/unmount-device b/.local/bin/dmenu/unmount-device new file mode 100755 index 0000000..75cb10f --- /dev/null +++ b/.local/bin/dmenu/unmount-device | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | # Script for unmounting filesystems | ||
| 3 | |||
| 4 | # Set askpass program for authentication | ||
| 5 | export SUDO_ASKPASS=/usr/bin/ssh-askpass | ||
| 6 | |||
| 7 | # Get list of unmountable filesystems excluding critical ones (/, /home, /boot, etc...) | ||
| 8 | exclude="\(/\|/boot\|/boot/efi\|/var\|/tmp\|/home\)$" | ||
| 9 | parts="$(lsblk -lp | grep "part /" | grep -v "$exclude" | awk '{print $7,"-",$4}')" | ||
| 10 | [ "$parts" = "" ] && exit 0 | ||
| 11 | |||
| 12 | # Get filesystem to unmount from user | ||
| 13 | select="$(echo "$parts" | dmenu -i -p "Select filesystem to unmount" | cut -d ' ' -f 1)" | ||
| 14 | [ "$select" = "" ] && exit 0 | ||
| 15 | dev="$(lsblk -lp | grep "$select" | awk '{print $1}')" | ||
| 16 | |||
| 17 | # Unmount the filesystem | ||
| 18 | sudo -A umount $select && pgrep -x dunst && notify-send "Unmounted $select ($dev)" \ | ||
| 19 | || notify-send "Error: unable to unmount $select" "Are you in it?" | ||
