aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/unmount_usb.sh
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/unmount_usb.sh')
-rwxr-xr-x.local/bin/unmount_usb.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/.local/bin/unmount_usb.sh b/.local/bin/unmount_usb.sh
new file mode 100755
index 0000000..c90dde4
--- /dev/null
+++ b/.local/bin/unmount_usb.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+options=$(lsblk | grep /media/$USER | rev | cut -d ' ' -f 1 | rev)
+[ -n "$options" ] && opt_num=$(echo "$options" | wc -l) || opt_num=0
+if [ $opt_num == 0 ]; then
+ notify-send "Nothing mounted!"
+elif [ $opt_num == 1 ]; then
+ udiskie-umount "$options"
+else
+ unmount_device=$(echo "$options" | dmenu -p "What device you want to unmount?")
+ [[ ! -z "$unmount_device" ]] && udiskie-umount "$unmount_device"
+fi