Answers:
Zenity和该entry
选项不支持“ pango”标记选项。
error
,info
,question
,warning
是支持这些标记是唯一的选择。
如果您检查手册页中是否有zenity-这些选项可以打开或关闭pango标记。
仅供参考,此链接为您提供了受支持的标记:http : //developer.gnome.org/pygtk/stable/pango-markup-language.html
我唯一能提出的建议是将请求发送给zenity开发人员
您可以使用进行此操作yad
,可以从软件中心进行安装。您可以运行:
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"
为了使此功能可用,我们需要获取输入的所有数据并检查按下了哪个按钮。这样做:
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
有关连日来键入help yad --help-all
或者man yad
,但我发现实际的例子更容易适应。有一些在这里。