I would like to create a zenity dialog window with two buttons as only user input.
The following creates a window with two buttons but with a space for a text entry
zenity --entry --title="" --text "Choose A or B" --ok-label="B" --cancel-label="A"
The following creates a window with one button only
zenity --info --title="" --text "Choose A or B" --ok-label="B"