From d53ce5574b0bfd6f78394f9469a043c04866ecdc Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Sun, 31 Jul 2022 12:39:36 +0200 Subject: Created dmenu wrapper and made all (hopefully) scripts compatible with vanilla dmenu. --- dmenuUmount.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dmenuUmount.sh') diff --git a/dmenuUmount.sh b/dmenuUmount.sh index d2c8fb3..3464591 100755 --- a/dmenuUmount.sh +++ b/dmenuUmount.sh @@ -10,7 +10,7 @@ # | |_| | | | | | | (_) | |_| | | | | |_\__ \ # \__,_|_| |_| |_|\___/ \__,_|_| |_|\__|___/ # -# Gives a dmenu prompt to umount mounted drives. +# Gives a dmenu prompt to unmount mounted drives. # Shows mounted partitions; select one to unmount. exclusionregex="\(/boot/efi\|/home\|/\)$" @@ -30,6 +30,6 @@ do done <<< "$list" [ "$drives" = "" ] && exit lines=$(echo "$drives" | wc -l) -chosen=$(echo "$drives" | dmenu -i -l "$lines" -p "Unmount which drive?" | awk '{print $2}') +chosen=$(echo "$drives" | dmenu -l "$lines" -p "Unmount which drive?" | awk '{print $2}') [ "$chosen" = "" ] && exit sudo umount "$chosen" && pgrep -x dunst && notify-send "$chosen unmounted." -- cgit v1.2.1