Use the --text-info option to create a text information dialog.
Tekstitietoikkuna tarjoaa seuraavat valitsimet:
Määrittää tiedoston, joka ladataan tekstitietoikkunaan.
Sallii näytettävän tekstin muokkaamisen. Muokattu teksti palautetaan vakiotulosteeseen kun ikkuna suljetaan.
Specifies the text font.
Enable a checkbox for use like a 'I read and accept the terms.'
Enable html support.
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
Haluatko kommentoida? Huomasitko virheen? Oliko ohje epäselvä? Lähetä palautetta tästä sivusta.