fixed usb mounting script but it still requires root perms

This commit is contained in:
shockrahwow 2019-08-28 17:34:42 -07:00
parent 94afcfb80f
commit 2e206acca7

21
usm
View File

@ -1,27 +1,24 @@
#!/bin/sh
mntpnt="/mnt"
# pick out the drive but not sda because thats the main drive
choice=`lsblk -lp | \
grep 'disk ' | \
grep -e 'part $' -e "part /mnt/*"| \
awk '{print $1, $4}' | \
dmenu -i -p 'Drive to (un)mount'`
if [ -z "$choice" ]; then exit; fi
# Check if it's already mounted / something was even picked
dev=`echo $choice | awk '{print $1}'`
name="`basename $dev`"
if [ -z "$dev" ]; then exit; fi
# Check if it's already mounted / something was even picked
if grep -qs "$dev" /proc/mounts;
then
# unmount the drive
umount "~/.mounts/$name"
rm -d "~/.mounts/$name"
# check if we still need the .mounts directory or nah
if [ "`ls ~/.mounts/`" ]
then
rm -d ~/.mounts/
fi
umount $dev
rm -d "$mntpnt/$name"
else
# Finally we can mount the thing
mkdir -p "~/.mounts/$name"
mount "$dev" "~/.mounts/$name"
mkdir -p "$mntpnt/$name"
mount "$dev" "$mntpnt/$name"
fi