From 5f324035a77f499e5a2597e308e217297521a54f Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Fri, 19 May 2023 21:09:48 -0700 Subject: [PATCH] Fix notification in screenshot.sh --- screenshot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/screenshot.sh b/screenshot.sh index e9c1c38..fc3bf16 100755 --- a/screenshot.sh +++ b/screenshot.sh @@ -6,10 +6,10 @@ local outpath="${HOME}/downloads/${outfile}" case "${1}" in; '-root') - maim ${maim_args} "${outpath}" + maim ${maim_args} "${outpath}" || exit ;; '-select' | *) - maim ${maim_args} -s "${outpath}" + maim ${maim_args} -s "${outpath}" || exit ;; esac