使用 Yad 时,可以将按钮设置为默认按钮吗?
When using Yad, can a button be made the default?
题目设置问题。
如果可以,编码是什么?
目前的编码是:-
yad --center --on-top --text-align=center --buttons-layout=center --title ${0##*/} --width=150 --height=60 --text "Do you want tea?" --button=gtk-no:1 --button=gtk-yes:0
我想将“是”按钮设置为默认按钮,所以即使我只是关闭该框,“是”按钮也会被选中。
非常感谢
约翰
此代码段在系统托盘中启动默认图标:
yad --notification xxx
发现$?对于 Yes=0,对于 No=1 和 Close=252,
所以外部编码允许制作“是”按钮
默认值。
:-
if [[ $? == 0 || $? == 252 ]]
then
echo "Default"
else
echo "No"
fi
题目设置问题。 如果可以,编码是什么? 目前的编码是:- yad --center --on-top --text-align=center --buttons-layout=center --title ${0##*/} --width=150 --height=60 --text "Do you want tea?" --button=gtk-no:1 --button=gtk-yes:0 我想将“是”按钮设置为默认按钮,所以即使我只是关闭该框,“是”按钮也会被选中。 非常感谢 约翰
此代码段在系统托盘中启动默认图标:
yad --notification xxx
发现$?对于 Yes=0,对于 No=1 和 Close=252, 所以外部编码允许制作“是”按钮 默认值。 :-
if [[ $? == 0 || $? == 252 ]]
then
echo "Default"
else
echo "No"
fi