summaryrefslogtreecommitdiff
path: root/ar/.local/bin/mounter
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.local/bin/mounter')
-rwxr-xr-xar/.local/bin/mounter2
1 files changed, 1 insertions, 1 deletions
diff --git a/ar/.local/bin/mounter b/ar/.local/bin/mounter
index 026f9b3..f7a3455 100755
--- a/ar/.local/bin/mounter
+++ b/ar/.local/bin/mounter
@@ -16,7 +16,7 @@ getmount() {
[ -z "$1" ] && mp="$(find "/media/$USER" /mnt -mindepth 1 -maxdepth 1 -type d 2>/dev/null | dmenu -i -p "Mount this drive where?")" || mp="$1"
test -n "$mp"
if [ ! -d "$mp" ]; then
- mkdiryn=$(printf "No\\nYes" | dmenu -i -p "$mp does not exist. Create it?")
+ mkdiryn=$(printf "Yes\nNo" | dmenu -i -p "$mp does not exist. Create it?")
[ "$mkdiryn" = "Yes" ] && (mkdir -p "$mp" 2>/dev/null || sudo -A mkdir -p "$mp")
fi
}