#!/bin/sh # # startx_rdesktop_menu # # startx_rdesktop_menu screen script for the linux terminal server project. # This script lives in the /opt/ltsp/i386/etc/screen.d directory # # Call it through lts.conf with the `SCREEN_xx = startx_rdesktop_menu` option. # # clear echo echo echo echo echo echo echo echo echo echo echo " Enter L for Linux " echo " or " echo " Enter W for Windows " echo echo read USER_ENTRY if [ $USER_ENTRY = "w" ] || [ $USER_ENTRY = "W" ]; then exec /etc/screen.d/rdesktop else exec /etc/screen.d/startx fi