20 lines
416 B
Bash
20 lines
416 B
Bash
#!/bin/bash
|
|
rc=-1
|
|
# while [[ $rc != [01] ]]; do ✔ took 4s at 07:46:30
|
|
ans=$(zenity --info --title 'Choose!' \
|
|
--text 'Autostart apps?' \
|
|
--ok-label YES \
|
|
--extra-button NO \
|
|
--timeout 15)
|
|
rc=$?
|
|
echo "${rc}-${ans}"
|
|
# done
|
|
if [[ $rc = 1 ]]
|
|
then
|
|
echo "exiting"
|
|
else
|
|
echo "startng"
|
|
fi
|
|
|
|
|