I'm using Kubuntu 18.04 with:
$ zenity --version
3.28.1
I want to display a --list
dialog with zenity, but I don't want to show the Cancel button (in fact I'm okay if there is no OK either).
It should be easy with the --no-cancel
option:
$ zenity --list --no-cancel
--no-cancel is not supported for this dialog
The output seems to indicate that zenity knows about the option but does not want to let me use it.
I only want to show the user the data in a table. I don't care about selection/editing or getting a result back.
Is there any alternative way? Or is zenity
simply unable to do this?