summaryrefslogtreecommitdiffstats
path: root/.local/bin/hddmnt
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-x.local/bin/hddmnt6
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/hddmnt b/.local/bin/hddmnt
index 33d0ebf..8ede464 100755
--- a/.local/bin/hddmnt
+++ b/.local/bin/hddmnt
@@ -11,15 +11,15 @@ case "$(hostname -s)" in
exit 1
fi
if ! doas cryptsetup open "$dev" "$devname"; then
- notify-send -u critical 'exthdd' " failed to uncrypt dev $dev"
+ notify-send -u critical 'exthdd' " failed to uncrypt dev <b>$dev</b>"
exit 1
fi
mkdir -p "$mountpoint"
if ! doas mount /dev/mapper/"$devname" "$mountpoint"; then
- notify-send -u critical 'exthdd' " failed to mount dev $dev"
+ notify-send -u critical 'exthdd' " failed to mount dev <b>$dev</b>"
exit 1
fi
- notify-send -t 5000 'exthdd' " crypt dev mounted to $mountpoint"
+ notify-send -t 5000 'exthdd' " crypt dev mounted to <b>$mountpoint</b>"
;;
mars)
if ! diskinfo da0 >/dev/null; then