For the benefit of other people possibly still looking the matter up and landing here:
If your Emacs copy is built with Athena widgets (also known as Lucid) then you can use either command line arguments or X resources files.
In both cases you'd want to use emacs*menubar*font
X resource and one of the fonts available to X windows system, as shown in the output of the xlsfonts
utility.
If using command line arguments, add something like this to the invocation line:
--xrm="emacs*menubar*font:-xos4-terminus-medium-r-normal--22-220-72-72-c-110-iso10646-1"
If using X resources files (.Xresources
or .Xdefaults
, however your system is configured), add something like this to the X resources file and restart the X windows:
emacs*menubar*font:-xos4-terminus-medium-r-normal--22-220-72-72-c-110-iso10646-1
Also, if your Emacs
copy is configured with --with-xft
option, you may use Xft-style font definitions instead:
--xrm="emacs*menubar*font:Hack-10"
or
emacs*menubar*font:Hack-10
respectively.