Zenity

Hi!

does someone know how can I setup a zenity entry "box" such that comes with the data as default.

like it appears an entry box already with the data but it can be modify.

thanks

Maybe something like this?

result=$(zenity --title "Test Entry Box" --entry --text "Accept default or change value" --entry-text "Default Value")

echo "$result"

-MD

Thnks