#!/bin/sh
yad --title="Activate Ice2K.sys" \
--window-icon="keyring-manager" \
--borders=5 --on-top --center \
--form \
--field="To help reduce software piracy, please activate your copy of Ice2K.sys now.

You don't need to give your name or other personal information.

Do you want to activate now?":LBL \
--field="":LBL \
--button=Yes:0 --button=No:1
errcode="$?"

if [ "$errcode" -eq 0 ]; then
	yad --title="Activate Ice2K.sys" \
	--window-icon="keyring-manager" \
	--borders=8 --on-top --center \
	--form \
	--field="Do you want to activate using the internet or a phone?
	Activation over the internet is quick and easy.\n":LBL \
	--field=:LBL \
	--button=Internet:0 --button=Phone:1
	errcode="$?"
if [ "$errcode" -ne 252 ]; then
	yad --title="Activate Ice2K.sys" \
	--window-icon="keyring-manager" \
	--borders=8 --on-top --center \
	--form \
	--field="April Fools!\n":LBL \
	--button=XDDDDD:0 --button=unfunny:1
fi
fi
