#!/bin/sh
zenity --title=Kerio_VPN_client --width=300 --question --text=start_or_stop --ok-label=start --cancel-label=stop
Y=$?
if [ $Y = 0 ]
then /etc/init.d/kerio-kvc start ; notify-send "$(echo 'Kerio VPN client запущен')" -u critical
else /etc/init.d/kerio-kvc stop ; notify-send "$(echo 'Kerio VPN client остановлен')" -u critical
fi

Add a code snippet to your website: www.paste.org