home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / SVGALIB / SVGALIB1.TAR / svgalib / utils / runx < prev    next >
Encoding:
Text File  |  1993-11-11  |  414 b   |  12 lines

  1. # Script to save VGA textmode font, run X, and restore VGA textmode font.
  2.  
  3. # A more rigorous alternative is to run the 'savetextmode' script before
  4. # running X, and 'textmode' after. This will restore the textmode registers
  5. # and the VGA palette in addition to the VGA font.
  6.  
  7. echo Saving font in /tmp/fontdata
  8. restorefont -w /tmp/fontdata
  9. startx
  10. echo Restoring font from /tmp/fontdata
  11. restorefont -r /tmp/fontdata
  12.