@PackRat @VastOne thanks for the feedback! Sorry my previous script didn't work! Anyways here is a fresh take,
#!/bin/bash
yad --width=420 \
--title="VSIDO Message Center" \
--image=vsidoorb_blk_sm_140 \
--button="Run Ceni:1" \
--button="Run Wicd:2" \
--button="Exit:3" \
--text="Live_Session_Warning
Welcome to VSIDO. Due to changes from Debian, systemd and udev, it is not possible to see every Network Interface that systemd/udev now creates.
It is recommended that you run Ceni to establish your network before you begin. Ceni is a Curses user interface for configuring network interfaces with ifupdown developed by Kel Modderman and used for setting up networks on several distros. You can also select and use the WICD GUI that has more robust WIFI connectivity options.
Simply select your Network Interface and then Accept-Enter and finally Yes to exit Ceni. Your network is then ready to go and connectivity to the Internet established." \
function tataa (){
exit 0
}
function cenee (){
xfce4-terminal -e ceni
}
function wiicd (){
wicd-gtk
}
case $? in
1) cenee ;;
2) wiicd ;;
3) tataa ;;
esac
Hope this yields better results!!!
Cheers!!!