dialog --default-button "no" --yesno "This will erase the entire disk . Please proceed with caution" 0 0
using --and-widget
to stop fleckering
dialog --inputbox "Enter somthing :" 0 0 --and-widget --inputbox "Enter somthing else :" 0 0 \
--title " Password : " --passwordbox " Please set root password : " 0 0
dialog --title " Password : " --passwordbox " Please set root password : " 0 0
dialog --buildlist "text" 0 0 0 "1" "item1" "off" \
"2" "item2" "on" \
"3" "item3" "off"
dialog --default-item 2 --checklist "Select:" 0 0 5 \
1 "First element" off \
2 "Second element" off \
3 "Third element" off
dialog --radiolist "Select items:" 0 0 0 \
1 "Choice number one" Off \
2 "Choice number two" on \
3 "Choice number three" off \
4 "Choice number four" Off
var=$(dialog --stdout --inputbox "Enter var :" 0 0)