Felisp
84436a5ae0
http://my.svgalib.org/svgalib/svgalib-1.9.25.tar.gz http://my.svgalib.org/svgalib/
12 lines
424 B
Bash
Executable file
12 lines
424 B
Bash
Executable file
#!/bin/sh
|
|
# Script to save VGA textmode font, run X, and restore VGA textmode font.
|
|
|
|
# A more rigorous alternative is to run the 'savetextmode' script before
|
|
# running X, and 'textmode' after. This will restore the textmode registers
|
|
# and the VGA palette in addition to the VGA font.
|
|
|
|
echo Saving font in /tmp/fontdata
|
|
restorefont -w /tmp/fontdata
|
|
startx
|
|
echo Restoring font from /tmp/fontdata
|
|
restorefont -r /tmp/fontdata
|