01-yesno.sh 268 B

12345678910111213141516171819
  1. #!/bin/sh
  2. # shellcheck disable=SC2046
  3. set -f
  4. set +f -- $(stty size)
  5. height=$(($1 / 2))
  6. width=$(($2 / 2))
  7. whiptail \
  8. --title 'yesno' \
  9. --backtitle 'whiptail' \
  10. --yes-button 'Sí' \
  11. --no-button 'No' \
  12. --yesno \
  13. '¿Deseas guardar los cambios?' \
  14. 0 \
  15. 0