Możesz to zrobić za pomocą yad
, którą możesz zainstalować z Software Center. Możesz uruchomić:
yad --title "Customised title here" --entry --text " Are you <b>really</b> sure you want to add an entry?" --width=300 --center --button="gtk-cancel:252" --button="gtk-ok:0"
Aby było to użyteczne, musimy uzyskać wszelkie wprowadzone dane i sprawdzić, który przycisk został naciśnięty. To robi:
data=$(yad --title "Customised title here" --entry --text " Are you <b>really</b> sure you want to add an entry?" --width=300 --center --button="gtk-cancel:252" --button="gtk-ok:0");rc=$?; [[ $rc = 252 ]] && data="";echo $data
Aby uzyskać pomoc na temat typu yad yad --help-all
czy man yad
ale znalazłem praktyczne przykłady są łatwiejsze do adaptacji. Są tacy tutaj .