diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/grimshot | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/contrib/grimshot b/contrib/grimshot index de2e7a7f..8a253ce8 100755 --- a/contrib/grimshot +++ b/contrib/grimshot @@ -51,8 +51,7 @@ die() { check() { COMMAND=$1 - command -v "$COMMAND" > /dev/null 2>&1 - if [ $? ]; then + if command -v "$COMMAND" > /dev/null 2>&1; then RESULT="OK" else RESULT="NOT FOUND" @@ -102,8 +101,7 @@ if [ "$ACTION" = "copy" ] ; then rm "$TMP" notifyOk "$WHAT copied to buffer" else - takeScreenshot "$FILE" "$GEOM" - if [ $? ]; then + if takeScreenshot "$FILE" "$GEOM"; then TITLE="Screenshot of $SUBJECT" MESSAGE=$(basename "$FILE") notifyOk "$MESSAGE" "$TITLE" |