home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1995 November
/
PCWK1195.iso
/
inne
/
podstawy
/
os2
/
nakladki
/
pc2v190.exe
/
SMALLFNT.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-05-01
|
507b
|
19 lines
/* Set default font to Helv size 8 or restore to default */
parse upper arg option .
call RxFuncAdd "SysIni", "RexxUtil", "SysIni"
AppName = "PM_SystemFonts"
KeyName = "DefaultFont"
if option = "RESTORE" then
do
FontName = "10.System Proportional"
say "Restoring default font 10.System Proportional"
end
else
do
FontName = "8.Helv"
say "Setting default font 8.Helv"
end
call SysIni "USER", AppName, KeyName, FontName||"0"x
say "Font will be active after next reboot"
exit