# This script sets monitor options 
# using the X_MONITOR_OPTION_01 .. X_MONITOR_OPTION_10 lts.conf vars
#

mon_options=$(env | sort -V | sed -n 's/^X_MONITOR_OPTION_[0-9]*=/        Option /p')

if [ -n "$mon_options" ]; then
    monitor_hacks="$monitor_hacks set_mon_options"
    CONFIGURE_X="True"
    set_mon_options() { echo "$mon_options"; }
fi
