# This script sets monitor options using the X_MONITOR_OPTION_* lts.conf vars

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

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