12345678910111213141516171819202122232425 |
- #!/bin/sh
- # shellcheck disable=SC2046
- set -f
- set +f -- $(stty size)
- height=$(($1 / 2))
- width=$(($2 / 2))
- numitems=$((height / 2))
- whiptail \
- --title 'checklist' \
- --backtitle 'whiptail' \
- --ok-button 'Aceptar' \
- --cancel-button 'Cancelar' \
- --checklist \
- 'Selecciona una o más opciones:' \
- "${height}" \
- "${width}" \
- "${numitems}" \
- 'NET_OUTBOUND' 'Allow connections to other hosts.' 0 \
- 'NET_INBOUND' 'Allow connections from other hosts.' 0 \
- 'LOCAL_MOUNT' 'Allow mounting of local devices.' 1 \
- 'REMOTE_MOUNT' 'Allow mounting of remote devices.' 0
|