#!/bin/sh

set -e

at_exit() {
    echo "info: test exiting"
}
trap at_exit INT TERM EXIT

# Test how the program run without a DISPLAY set
DISPLAY= creepy || true
