You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-wm/e16/files/e16-user-fonts.patch

13 lines
412 B

Allow users to provide custom fonts via ~/.e16/fonts/
--- a/src/ttfont.c 2018-04-26 19:19:44.000000000 +0300
+++ b/src/ttfont.c 2019-03-06 06:04:33.489831326 +0300
@@ -46,6 +46,8 @@
imlib_add_path_to_font_path(s);
Esnprintf(s, sizeof(s), "%s/fonts", EDirRoot());
imlib_add_path_to_font_path(s);
+ Esnprintf(s, sizeof(s), "%s/fonts", Mode.conf.dir);
+ imlib_add_path_to_font_path(s);
#endif
}