On Tue, Nov 10, 2015 at 11:44:20PM +0100, Joerg Jung wrote: > On Tue, Nov 10, 2015 at 04:24:00PM -0500, Ted Unangst wrote: > > > (All that said, since I had to build 6.1 by myself to test, I also changed > > the > > font to ubuntu mono to match my xterms, so maybe I will just keep building > > it > > myself the way I like, so my opinion doesn't count.) > > I'm thinking about removing terminus font as dependency and instead keep > upstreams "monospace" font setting as default. Then you and others may > not need to build it anymore and can just adjust ~/fonts.conf as needed.
I decided to keep the terminus font and the same look & feel to stay in sync with the other suckless ports. I think users can easily override the font without re-compiling the port, using something like the snippet below in ~/.fonts.conf <?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <match> <test name="family" qual="any"> <string>Terminus</string> </test> <edit name="family" mode="assign" binding="same"> <string>Inconsolata</string> </edit> </match> </fontconfig>