diff options
author | Adam Carpenter <atc@53hor.net> | 2020-05-10 21:13:46 -0400 |
---|---|---|
committer | Adam Carpenter <atc@53hor.net> | 2020-05-10 21:13:46 -0400 |
commit | b184782970853b3c479f6c4ad833a36a3aea7afa (patch) | |
tree | 318233a807c61414a2696b5300adf3cec6e700e5 /mounter | |
download | scripts-b184782970853b3c479f6c4ad833a36a3aea7afa.tar.xz scripts-b184782970853b3c479f6c4ad833a36a3aea7afa.zip |
mega update
Diffstat (limited to 'mounter')
-rwxr-xr-x | mounter | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +#!/bin/sh + +# Get list of possible partitions to mount. Only select partitions that have +# not been mounted and display their name and size as dmenu options. +parts=$( + lsblk -nlpo NAME,SIZE,TYPE,MOUNTPOINT | grep "part $" | cut -f 1,4 -d' ' +) +[[ -z $parts ]] && exit 1 + +# Prompt for partition to mount. +choice=$( + echo "$parts" | dmenu -i -p "Mount which partition?" | cut -f 1 -d' ' +) +[[ -z $choice ]] && exit 1 + +# Create a mount directory if none exists. Use UUID for unique name. +mntdir="/mnt/$(lsblk -n "$choice" -o UUID | cut -f 1 -d' ')" +sudo mkdir -p "$mntdir" +sudo mount "$choice" "$mntdir" + |