rice/usm

35 lines
824 B
Plaintext
Raw Normal View History

2019-07-04 20:31:12 +00:00
#!/bin/sh
mntpnt="/media"
2019-07-04 20:31:12 +00:00
# pick out the drive but not sda because thats the main drive
choice=`lsblk -lp | \
grep -e 'part $' -e "part /mnt/*"| \
2019-07-05 21:17:10 +00:00
awk '{print $1, $4}' | \
dmenu -i -l 10 -p 'Drive to (un)mount'`
# Ignore empty choices and back out
2019-07-05 21:17:10 +00:00
if [ -z "$choice" ]; then exit; fi
2019-07-04 20:31:12 +00:00
dev=`echo $choice | awk '{print $1}'`
2019-07-05 21:17:10 +00:00
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
echo "Unmounting mounted device $dev"
2019-07-05 21:17:10 +00:00
# unmount the drive
umount "$mntpnt/$name"
rm -d "$mntpnt/$name"
# Cleanup the old mount points directory
if [ "`ls $mntpnt`" ]; then
rm -d "$mntpnt"
2019-07-05 21:17:10 +00:00
fi
umount $dev
rm -d "$mntpnt/$name"
2019-07-05 21:17:10 +00:00
else
echo "Mounting unmounted device $dev"
mkdir -p "$mntpnt/$name"
mount "$dev" "$mntpnt/$name"
2019-07-05 21:17:10 +00:00
fi