Hello group
I’m busy setting up Debian for my work and so far it’s actually working well. The small form factor is perfect for what I do. The only issue I’m having is the font size for XTerm. I’ve tried creating a custom Xresources file but either my syntax is wrong or I’m going about this wrong. Anyone figured this out?
Thanks
John
You can change the shortcut to:
xterm -fa font -fs size
the font is pattern matched with -fa, and the size is in points. So if you want a terminal (fixed) font of size 25 points, use:
xterm -fa 'terminal' -fs 25
You can of course edit your Xresources, just remember to merge afterwards (or restart X). Merge with:
xrdb -merge ~/.Xresources (or where ever you put your resource file).
The resource syntax is something like:
xterm*font: *-pattern-*-*-*-size-*
eg:
xterm*font: *-terminal-*-*-*-25-*
From memory.
Hope this helps.