yeets my yotes ya know

This commit is contained in:
shockrahwow
2019-07-04 13:31:12 -07:00
parent e26830fd40
commit f4d083bc3e
5 changed files with 47 additions and 2 deletions

10
usm Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# pick out the drive but not sda because thats the main drive
choice=`lsblk -lp | \
grep 'disk $' | awk '{print $1, $4}' | grep -v 'sda' | \
dmenu -i -p 'Drive to mount'`
dev=`echo $choice | awk '{print $1}'`
if [ -z "$dev" ];then exit 0;fi
# Finally we can mount the thing
mkdir -p "/mnt/`basename $dev`"
mount "$dev" "$name"