Use the --text-info option. Диалоговое окно текстовой информации

Use the --text-info option to create a text information dialog.

Диалоговое окно текстовой информации поддерживает следующие параметры:

<cmd>--filename</cmd>=<var>filename</var>

Указывает имя файла, который будет загружен в окно текстовой информации.

<cmd>--editable</cmd>

Позволяет редактирование изображённого текста. Отредактированный текст возвращается в стандартный поток, после того, как диалоговое окно будет закрыто.

<cmd>--font</cmd>=<var>FONT</var>

Specifies the text font.

<cmd>--checkbox</cmd>=<var>TEXT</var>

Enable a checkbox for use like a 'I read and accept the terms.'

<cmd>--html</cmd>

Enable html support.

<cmd>--url</cmd>=<var>URL</var>

Sets an url instead of a file. Only works if you use --html option.

The following example script shows how to create a text information dialog:

#!/bin/sh # You must place file "COPYING" in same folder of this script. FILE=`dirname $0`/COPYING zenity --text-info \ --title="License" \ --filename=$FILE \ --checkbox="I read and accept the terms." case $? in 0) echo "Start installation!" # next step ;; 1) echo "Stop installation!" ;; -1) echo "An unexpected error has occurred." ;; esac
Пример диалогового окна текстовой информации Zenity text information dialog example