diff options
Diffstat (limited to 'stuff')
| -rwxr-xr-x | stuff/scripts/unmount-usb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/stuff/scripts/unmount-usb b/stuff/scripts/unmount-usb index f195317..dfcb078 100755 --- a/stuff/scripts/unmount-usb +++ b/stuff/scripts/unmount-usb @@ -6,6 +6,6 @@ if [ $opt_num == 0 ]; then  elif [ $opt_num == 1 ]; then  	udiskie-umount "$options"  else -	unmount_device=$(echo "$options" | rofi -dmenu -p "What device you want to unmount?") -	udiskie-umount "$unmount_device" +	unmount_device=$(echo "$options" | dmenu -p "What device you want to unmount?") +	[[ ! -z "$unmount_device" ]] && udiskie-umount "$unmount_device"  fi | 
