From 467dc53b6934ea17e5e9a20194d217a7c870fa53 Mon Sep 17 00:00:00 2001 From: David Date: Tue, 29 Sep 2020 00:38:54 +0200 Subject: [PATCH] fix: fix notifications emotes --- .local/bin/dmenuumount | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.local/bin/dmenuumount b/.local/bin/dmenuumount index 4262094..1106d01 100755 --- a/.local/bin/dmenuumount +++ b/.local/bin/dmenuumount @@ -16,9 +16,9 @@ if [ -z "$chosen" ]; then exit else if sudo -A umount "$chosen" ; then - notify-send " USB unmounting" "$chosen unmounted." + notify-send " USB unmounting" "$chosen unmounted." else - notify-send -u "critical" -t 3000 " USB ERROR" "Unmounting failed." + notify-send -u "critical" -t 3000 " USB ERROR" "Unmounting failed." fi fi }