Stefano Sabatini wrote: > # textual session > if [ -z "display" ]; then This will never be true. You meant to say the following there. if [ -z "$DISPLAY" ]; then Bob