GNU bug report logs -
#57963
[PATCH 0/1] Support user's fontconfig.
Previous Next
Full log
Message #17 received at 57963 <at> debbugs.gnu.org (full text, mbox):
Am Mittwoch, dem 21.09.2022 um 18:59 +0900 schrieb Taiju HIGASHI:
> Hi Liliana,
>
> Thank you for your review.
>
> > > -(define (add-fontconfig-config-file he-symlink-path)
> > > +(define (add-fontconfig-config-file font-config)
> > > `(("fontconfig/fonts.conf"
> > > ,(mixed-text-file
> > > "fonts.conf"
> > > "<?xml version='1.0'?>
> > > <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
> > > <fontconfig>
> > > - <dir>~/.guix-home/profile/share/fonts</dir>
> > > -</fontconfig>"))))
> > > + <dir>~/.guix-home/profile/share/fonts</dir>\n"
> > > + (if (null? font-config)
> > > + ""
> > > + (string-join font-config "\n" 'suffix))
> > > + "</fontconfig>\n"))))
> > I think it'd be wiser to pretty-print SXML here.
> > The structure could look something like
> > `(fontconfig
> > (dir "~/.guix-home/profile/share/fonts")
> > ,@(extra-user-config ...))
>
> That's definitely better!
> Does this assume that SXML will also accept additional user settings?
It assumes that whatever (extra-user-config ...) does, it returns a
list of SXML nodes, e.g. ((dir "~/.fonts")). Writing correct SXML
should be comparatively simpler to writing correct XML.
> > Also, for the particular use case of handling multiple profiles
> > gracefully (rather than the current status quo) I think fontconfig-
> > service-type should be able to construct (dir
> > "#$profile/share/fonts") style entries on its own. However, given
> > that multiple profiles aren't supported yet, this is future work.
>
> Noted. I believe that even with the current patch, it is possible to
> add arbitrary directories, so it will be better than what we have
> now.
That's fine, just know that this use case might at some point become
obsolete thanks to a better implementation :)
This bug report was last modified 215 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.