#!/bin/sh
RETVAL=1
gmessage -buttons "Start ListGarden":0,Cancel:1 -default Cancel -nearmouse -timeout 5 "Access the editor at http://127.0.0.1:6555"
RETVAL=$?
if [ "$RETVAL" = 0 ]; then
    listgarden
fi
