#!/bin/sh
 
ans=$(zenity  --list  --text "Window Manager SETTINGS - Please Choose Which Window Manager are you currently using?" \
--radiolist  --column "Pick" --column "Output Type" TRUE Compiz FALSE Openbox \
FALSE Xfwm4 FALSE Metacity FALSE Marco);
 
if [ "$ans" = "Compiz" ]
then
compiz-gtk-decorator-theme-selector &
elif [ "$ans" = "Openbox" ]
then
obconf &
elif [ "$ans" = "Xfwm4" ]
then
xfwm4-settings &
elif [ "$ans" = "Metacity" ]
then
compiz-gtk-decorator-theme-selector &
elif [ "$ans" = "Marco" ]
then
mate-control-center &
fi
