#!/bin/bash

SAVEIFS=$IFS
IFS=$(echo -en "\n\b")

zenity --question  --text="Quick Layout Switch" --ok-label="Mac Style" --cancel-label="Windows Style"
if [ $? = 0 ] ; then
command=$(/usr/bin/osx-switch.sh)
else
command=$(/usr/bin/win-switch.sh)
fi

done

IFS=$SAVEIFS
