From 9e82c96713989a7565eadac505b36e3dbe91cd5a Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sun, 11 Jun 2023 07:56:17 -0400 Subject: Added, removed, renamed scripts --- .local/bin/mount-device | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 .local/bin/mount-device (limited to '.local/bin/mount-device') diff --git a/.local/bin/mount-device b/.local/bin/mount-device new file mode 100755 index 0000000..6b644df --- /dev/null +++ b/.local/bin/mount-device @@ -0,0 +1,39 @@ +#!/bin/sh +# Script for mounting block devices + +# Set askpass program for authentication +#export SUDO_ASKPASS=/usr/bin/ssh-askpass + +# Check for and get device to mount from user +devs="$(lsblk -lpo NAME,FSTYPE,SIZE,TYPE,MOUNTPOINT | grep "part\s*$\|crypto_LUKS" | awk '{print $1,"-",$3}')" +[ "$devs" = "" ] && exit 0 +dev="$(echo "$devs" | dmenu -i -p "Select device" | cut -d ' ' -f 1)" +[ "$dev" = "" ] && exit 1 + +# Open and map drive if it is encrypted +crypt=0 +[ "$(lsblk -no FSTYPE $dev)" = "crypto_LUKS" ] && crypt=1 && \ + mapname="$(echo -n "" | dmenu -i -p "Enter device mapper name")" && \ + sudo cryptsetup open $dev $mapname + +# Attempt to mount without mountpoint for devices in /etc/fstab +sudo mount "$dev" 2>/dev/null && exit 0 + +# Get mountpoint from user +mntpnt="$(find /mnt -maxdepth 3 -type d 2>/dev/null | dmenu -i -p "Select mountpoint")" +[ "$mntpnt" = "" ] && exit 1 + +# If selected mountpoint does not exist ask to create it +# If user decides not to create non-existent drive, exit +[ ! -d $mntpnt ] && create="$(echo "No\nYes" | \ + dmenu -i -p "$mntpnt does not exist, would you like to create it?")" && \ + ([ "$create" = "Yes" ] && sudo -A mkdir -p $mntpnt || exit 0) + +# Mount the device +if [ $crypt -eq 1 ]; then + sudo -A mount /dev/mapper/$mapname $mntpnt && pgrep -x dunst && \ + notify-send "$dev mounted to $mntpnt" +else + sudo -A mount $dev $mntpnt && pgrep -x dunst && \ + notify-send "$dev mounted to $mntpnt" +fi -- cgit v1.2.3