home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / mousize.cmd < prev    next >
OS/2 REXX Batch file  |  1994-03-07  |  745b  |  15 lines

  1. /* MOUSIZE.CMD Set VGA pointers to small             */
  2. /* REXX Command program; must be run from OS/2       */
  3. /* prompt.  Reboot after running.                    */
  4. /*                                                   */
  5. /*       This program will decrease the size of the  */
  6. /*       cursor.  To force a large size pointer,     */
  7. /*       replace the "2" in the program with a "1".  */
  8. /*       To let the system select the size of the    */
  9. /*       pointer, replace the "2" in the program     */
  10. /*       with a "0".                                 */
  11. /*                                                   */
  12. call RxFuncAdd "SysIni", "RexxUtil", "SysIni"
  13. call SysIni "USER", "PM_IBMVGA", "CURSOR_SIZE", "2",
  14. say Result
  15. exit