diff options
| author | krolyxon <krolyxon@tutanota.com> | 2022-07-26 16:20:45 +0530 |
|---|---|---|
| committer | krolyxon <krolyxon@tutanota.com> | 2022-07-26 16:20:45 +0530 |
| commit | 1463ae72e5a9d058821cf93194aa31c929e600c5 (patch) | |
| tree | e836f5217e3e37b885322fb0b261a24b0498b6a0 /.local/bin/dmenuumount | |
| parent | 75f7550e7e6ee03d1c03d2023b47ab47bb5ac4d2 (diff) | |
removed android stuff from dmenumount\umount scripts
Diffstat (limited to '.local/bin/dmenuumount')
| -rwxr-xr-x | .local/bin/dmenuumount | 30 |
1 files changed, 4 insertions, 26 deletions
diff --git a/.local/bin/dmenuumount b/.local/bin/dmenuumount index 946d12c..d9be444 100755 --- a/.local/bin/dmenuumount +++ b/.local/bin/dmenuumount @@ -12,33 +12,11 @@ unmountusb() { sudo -A umount "$chosen" && notify-send "💻 USB unmounting" "$chosen unmounted." } -unmountandroid() { \ - chosen="$(awk '/simple-mtpfs/ {print $2}' /etc/mtab | dmenu -i -p "Unmount which device?")" || exit 1 - [ -z "$chosen" ] && exit - sudo -A umount -l "$chosen" && notify-send "🤖 Android unmounting" "$chosen unmounted." - } - -asktype() { \ - choice="$(printf "USB\\nAndroid" | dmenu -i -p "Unmount a USB drive or Android device?")" || exit 1 - case "$choice" in - USB) unmountusb ;; - Android) unmountandroid ;; - esac - } - drives=$(lsblk -nrpo "name,type,size,mountpoint,label" | awk -F':' '{gsub(/ /,":")}$4!~/\/boot|\/efi|\/home$|SWAP/&&length($4)>1{printf "%s (%s) %s\n",$4,$3,$5}') -if ! grep simple-mtpfs /etc/mtab; then - [ -z "$drives" ] && echo "No drives to unmount." && exit - echo "Unmountable USB drive detected." - unmountusb +if [ -z "$drives" ]; then + echo "No drives to unmount." && exit else - if [ -z "$drives" ] - then - echo "Unmountable Android device detected." - unmountandroid - else - echo "Unmountable USB drive(s) and Android device(s) detected." - asktype - fi + echo "Unmountable USB drive detected." + unmountusb fi |
