Skip to content
Snippets Groups Projects
Commit 03102058 authored by Carmelo Pellegrino's avatar Carmelo Pellegrino
Browse files

ask for the duty_cycle

parent 0e7a5d62
No related branches found
No related tags found
No related merge requests found
......@@ -138,6 +138,20 @@ while [ 1 ]; do
continue
fi
duty_cycle=`zenity --list \
--title "oDF' duty cycle (at $(date))" \
--text "Select one of the following duty cycles:" \
--radiolist \
--column="Selection" \
--column="N" \
--column="Duty cycle" \
--hide-column=2 \
TRUE 1 100% FALSE 2 50% FALSE 10 10% FALSE 20 5%`
if [ "${duty_cycle}" == "" ]; then
continue
fi
done
# Wait 10 seconds
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment