আপনি এটি দিয়ে 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
ইয়াদের প্রকারের জন্য yad --help-all
বা man yad
তবে আমি দেখতে পেলাম ব্যবহারিক উদাহরণগুলি মানিয়ে নেওয়া আরও সহজ। এখানে কিছু আছে ।