mirror of
https://github.com/Mastermindzh/examples.git
synced 2024-11-24 13:22:06 +01:00
10 lines
190 B
Bash
10 lines
190 B
Bash
#!/usr/bin/env bash
|
|
|
|
Height=$(tput lines)
|
|
Width=$(tput cols)
|
|
Height=$((Height / 2))
|
|
Width=$(((Width * 2) / 3))
|
|
|
|
whiptail --yesno --title "Hello!" "This is a whiptail window" $Height $Width
|
|
|