dmenumount (2275B)
1 #!/bin/sh 2 3 # Gives a dmenu prompt to mount unmounted drives and Android phones. If 4 # they're in /etc/fstab, they'll be mounted automatically. Otherwise, you'll 5 # be prompted to give a mountpoint from already existsing directories. If you 6 # input a novel directory, it will prompt you to create that directory. 7 8 getmount() { \ 9 [ -z "$chosen" ] && exit 1 10 mp="$(find $1 2>/dev/null | dmenu -i -p "Mount point")" 11 [ "$mp" = "" ] && exit 1 12 if [ ! -d "$mp" ]; then 13 mkdiryn=$(printf "No\\nYes" | dmenu -i -p "$mp does not exist. Create it?") 14 [ "$mkdiryn" = "Yes" ] && (mkdir -p "$mp" || sudo -A mkdir -p "$mp") 15 fi 16 } 17 18 mountusb() { \ 19 chosen="$(echo "$usbdrives" | dmenu -i -p "Mount which drive?" | awk '{print $1}')" 20 sudo -A mount "$chosen" 2>/dev/null && notify-send "💻 USB mounting" "$chosen mounted." && exit 0 21 alreadymounted=$(lsblk -nrpo "name,type,mountpoint" | awk '$2=="part"&&$3!~/\/boot|\/home$|SWAP/&&length($3)>1{printf "-not \\( -path *%s -prune \\) \\ \n",$3}') 22 getmount "/mnt /media /mount /home -maxdepth 1 -type d $alreadymounted" 23 partitiontype="$(lsblk -no "fstype" "$chosen")" 24 case "$partitiontype" in 25 "vfat") sudo -A mount -t vfat "$chosen" "$mp" -o rw,umask=0000;; 26 *) sudo -A mount "$chosen" "$mp"; user="$(whoami)"; ug="$(groups | awk '{print $1}')"; sudo -A chown "$user":"$ug" "$mp";; 27 esac 28 notify-send "💻 USB mounting" "$chosen mounted to $mp." 29 } 30 31 mountandroid() { \ 32 chosen=$(echo "$anddrives" | dmenu -i -p "Which Android device?" | cut -d : -f 1) 33 getmount "$HOME -maxdepth 3 -type d" 34 simple-mtpfs --device "$chosen" "$mp" 35 notify-send "🤖 Android Mounting" "Android device mounted to $mp." 36 } 37 38 asktype() { \ 39 case $(printf "USB\\nAndroid" | dmenu -i -p "Mount a USB drive or Android device?") in 40 USB) mountusb ;; 41 Android) mountandroid ;; 42 esac 43 } 44 45 anddrives=$(simple-mtpfs -l 2>/dev/null) 46 usbdrives="$(lsblk -rpo "name,type,size,mountpoint" | awk '$2=="part"&&$4==""{printf "%s (%s)\n",$1,$3}')" 47 48 if [ -z "$usbdrives" ]; then 49 [ -z "$anddrives" ] && echo "No USB drive or Android device detected" && exit 50 echo "Android device(s) detected." 51 mountandroid 52 else 53 if [ -z "$anddrives" ]; then 54 echo "USB drive(s) detected." 55 mountusb 56 else 57 echo "Mountable USB drive(s) and Android device(s) detected." 58 asktype 59 fi 60 fi