From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: Need help displaying Unicode fonts in Icecat Date: Fri, 09 Aug 2019 18:38:30 -0400 Message-ID: <87blwyufpa.fsf@netris.org> References: <875zn8290j.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:55892) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hwDX9-00032Z-Dm for help-guix@gnu.org; Fri, 09 Aug 2019 18:38:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hwDX6-0003jO-VX for help-guix@gnu.org; Fri, 09 Aug 2019 18:38:51 -0400 Received: from world.peace.net ([64.112.178.59]:44566) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hwDX6-0003j5-R8 for help-guix@gnu.org; Fri, 09 Aug 2019 18:38:48 -0400 In-Reply-To: <875zn8290j.fsf@gmail.com> (Gary Johnson's message of "Wed, 07 Aug 2019 13:14:04 -0400") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Gary Johnson Cc: help-guix@gnu.org Hi Gary, Gary Johnson writes: >> Are you running Guix on top of another distribution? I had to add the >> veriable XDG_DATA_DIRS to the environment, specifically >> XDG_DATA_DIRS=$HOME/.guix-profile/share:/usr/share for Guix running on >> Debian. The variable was set automagically full Guix systems. >> >> HTH, >> jr > > Thanks, jr. I'm running GuixSD and I believe XDG_DATA_DIRS is set > correctly: > > $ echo $XDG_DATA_DIRS > /gnu/store/daxn8m96wk2d2jnz4mxllhk34iv5gjqp-shared-mime-info-1.9/share:/gnu/store/cgy82g6yv8l1chawgch47zh23b0jll3l-glib-2.56.3/share:/gnu/store/l35xlc0hk86qw7kwli8lkskdkxskxsif-gtk+-3.24.9/share:/gnu/store/fbf0h779z46cl55vdciv00m8s0ccfnyb-emacs-26.2/share:/gnu/store/daxn8m96wk2d2jnz4mxllhk34iv5gjqp-shared-mime-info-1.9/share:/gnu/store/cgy82g6yv8l1chawgch47zh23b0jll3l-glib-2.56.3/share:/gnu/store/l35xlc0hk86qw7kwli8lkskdkxskxsif-gtk+-3.24.9/share:/gnu/store/fbf0h779z46cl55vdciv00m8s0ccfnyb-emacs-26.2/share:/home/gjohnson/.guix-profile/share:/home/gjohnson/.guix-profile/share:/run/current-system/profile/share:/home/gjohnson/.guix-profile/share:/run/current-system/profile/share > > I just see boxes in IceCat and Ungoogled-Chromium wherever Unicode > symbols are supposed to appear, so I don't know if there is another font > package that I need to install or some browser-specific configuration > files that I need to edit. Are you sure that the environment variables are set in the IceCat process? The most reliable way to find out is to look in /proc//environ, where is the process ID of the IceCat process. Note that environment variables are not global to your session. In general, each process has its own set of environment variables which are typically passed down from parent processes to child processes. So, it could be that your shells have the XDG_DATA_DIRS environment variable set, but that your graphical window manager (or equivalent) doesn't have it set. If all else fails, I would recommend running IceCat within strace, like this: strace -o trace.out icecat and wait until IceCat fully comes up, and then quit and look in 'trace.out', searching for "share/fonts". The clues of what's going wrong should be in there somewhere, buried in a mountain of other output. See below for the relevant lines that I see in my 'trace.out'. Mark --8<---------------cut here---------------start------------->8--- stat("/home/mhw/.guix-profile/etc/xdg", {st_mode=S_IFDIR|0555, st_size=24, ...}) = 0 stat("/run/current-system/profile/etc/xdg", {st_mode=S_IFDIR|0555, st_size=82, ...}) = 0 stat("/gnu/store/xii7ibhwnxcb9wp4chrv5if675p54jlg-gtk+-3.24.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/daxn8m96wk2d2jnz4mxllhk34iv5gjqp-shared-mime-info-1.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/cgy82g6yv8l1chawgch47zh23b0jll3l-glib-2.56.3/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/v93ni4aqlbh05qas779i453p02nj8d3n-gtk+-3.24.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/hn6ndmw2ii8p7wr61bbv35wwa3898ikr-emacs-26.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/daxn8m96wk2d2jnz4mxllhk34iv5gjqp-shared-mime-info-1.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/cgy82g6yv8l1chawgch47zh23b0jll3l-glib-2.56.3/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/v93ni4aqlbh05qas779i453p02nj8d3n-gtk+-3.24.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/hn6ndmw2ii8p7wr61bbv35wwa3898ikr-emacs-26.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/7r9nnf297vsknl4cg02ymaszm79v6063-geocode-glib-3.26.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/ga4arkrdndyv52cs062n2l9hgnqfjyaq-gsettings-desktop-schemas-3.28.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/daxn8m96wk2d2jnz4mxllhk34iv5gjqp-shared-mime-info-1.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/cgy82g6yv8l1chawgch47zh23b0jll3l-glib-2.56.3/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/x1ilifw5d41a81fpqbig1p0n268a7jq1-gtk+-3.24.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/qqaghlk7nvnjsrbdvpz7pkf1c8sffnrg-telepathy-logger-0.8.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/9jjnk994sg3kynx7w2p873x60yr27q1p-pulseaudio-12.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/b20ijqhpzb6mm4qi1hk0s8cj448vyv67-network-manager-applet-1.8.14/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/b9vc5f6ii59zh8z6cpl0j9cah84rpgqm-mutter-3.28.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/zs0fssnk4xbxhlfyzd2nrsdmsc966v4r-libgweather-3.28.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/vs954wm6s6j3y3y73kyll7qjp5qmr7ql-libgnomekbd-3.26.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/m3ga9y1lbrxcb0h0irdczq4kvzk96jd8-ibus-1.5.20/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/iiyi1pkb269p0yj44zbjc8fx1akkm7rq-gnome-settings-daemon-3.28.1/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/xdlhm9f6mn267raqvq0cm7k2vb7xk9s4-gnome-bluetooth-3.28.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/2zg5y4v0xfnfswy6175mxi9h3l36krsc-gdm-3.28.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/x6k257n8qknni22l650w58d02z0bq4rv-gcr-3.28.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/lrg91x67n2s4kx10ab1gnwj6hwxvzwh1-evolution-data-server-3.28.3/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/mks4gssiav8lxjqq3rhcwwc6p2v0x576-caribou-0.4.21/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/x0kc52x1n7kpz5vcwzdfmbzwdzzhnjcw-gnome-shell-3.28.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/7r9nnf297vsknl4cg02ymaszm79v6063-geocode-glib-3.26.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/ga4arkrdndyv52cs062n2l9hgnqfjyaq-gsettings-desktop-schemas-3.28.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/daxn8m96wk2d2jnz4mxllhk34iv5gjqp-shared-mime-info-1.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/cgy82g6yv8l1chawgch47zh23b0jll3l-glib-2.56.3/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/x1ilifw5d41a81fpqbig1p0n268a7jq1-gtk+-3.24.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/qqaghlk7nvnjsrbdvpz7pkf1c8sffnrg-telepathy-logger-0.8.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/9jjnk994sg3kynx7w2p873x60yr27q1p-pulseaudio-12.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/b20ijqhpzb6mm4qi1hk0s8cj448vyv67-network-manager-applet-1.8.14/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/b9vc5f6ii59zh8z6cpl0j9cah84rpgqm-mutter-3.28.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/zs0fssnk4xbxhlfyzd2nrsdmsc966v4r-libgweather-3.28.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/vs954wm6s6j3y3y73kyll7qjp5qmr7ql-libgnomekbd-3.26.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/m3ga9y1lbrxcb0h0irdczq4kvzk96jd8-ibus-1.5.20/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/iiyi1pkb269p0yj44zbjc8fx1akkm7rq-gnome-settings-daemon-3.28.1/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/xdlhm9f6mn267raqvq0cm7k2vb7xk9s4-gnome-bluetooth-3.28.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/2zg5y4v0xfnfswy6175mxi9h3l36krsc-gdm-3.28.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/x6k257n8qknni22l650w58d02z0bq4rv-gcr-3.28.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/lrg91x67n2s4kx10ab1gnwj6hwxvzwh1-evolution-data-server-3.28.3/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/mks4gssiav8lxjqq3rhcwwc6p2v0x576-caribou-0.4.21/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/x0kc52x1n7kpz5vcwzdfmbzwdzzhnjcw-gnome-shell-3.28.2/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/daxn8m96wk2d2jnz4mxllhk34iv5gjqp-shared-mime-info-1.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/cgy82g6yv8l1chawgch47zh23b0jll3l-glib-2.56.3/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/x1ilifw5d41a81fpqbig1p0n268a7jq1-gtk+-3.24.9/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/ga4arkrdndyv52cs062n2l9hgnqfjyaq-gsettings-desktop-schemas-3.28.0/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/gnu/store/p7sbfdml83clrpb73vcq4zfjsi0qh2mn-gnome-session-3.28.1/share/fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/home/mhw/.guix-profile/share/fonts", {st_mode=S_IFDIR|0555, st_size=16, ...}) = 0 stat("/run/current-system/profile/share/fonts", {st_mode=S_IFDIR|0555, st_size=34, ...}) = 0 stat("/home/mhw/.guix-profile/share/fonts", {st_mode=S_IFDIR|0555, st_size=16, ...}) = 0 stat("/run/current-system/profile/share/fonts", {st_mode=S_IFDIR|0555, st_size=34, ...}) = 0 stat("/home/mhw/.config", {st_mode=S_IFDIR|0755, st_size=830, ...}) = 0 stat("/home/mhw/.themes", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/home/mhw/.fonts", 0x7ffd2fa065b0) = -1 ENOENT (No such file or directory) stat("/home/mhw/.local/share", {st_mode=S_IFDIR|0700, st_size=622, ...}) = 0 lstat("/home/mhw/.fonts.conf", 0x7ffd2fa06530) = -1 ENOENT (No such file or directory) lstat("/home/mhw/.pangorc", 0x7ffd2fa06530) = -1 ENOENT (No such file or directory) stat("/gnu/store/q080jqqgjrzdw9hjh510rivgviix32ww-icecat-60.8.0-guix1/lib/icecat", {st_mode=S_IFDIR|0555, st_size=892, ...}) = 0 stat("/home/mhw/.mozilla/systemextensionsdev", {st_mode=S_IFDIR|0700, st_size=0, ...}) = 0 lstat("/var/run/bumblebee.socket", 0x7ffd2fa06530) = -1 ENOENT (No such file or directory) lstat("/proc/-1/maps", 0x7ffd2fa06700) = -1 ENOENT (No such file or directory) lstat("/proc/-1/statm", 0x7ffd2fa06700) = -1 ENOENT (No such file or directory) lstat("/proc/-1/smaps", 0x7ffd2fa06700) = -1 ENOENT (No such file or directory) lstat("/proc/-1/status", 0x7ffd2fa06700) = -1 ENOENT (No such file or directory) stat("/tmp/Temp-adeffb20-9595-4353-96a7-25e40f387b34", 0x7f8960d9add8) = -1 ENOENT (No such file or directory) lstat("/tmp/Temp-adeffb20-9595-4353-96a7-25e40f387b34", 0x7f8960d9add8) = -1 ENOENT (No such file or directory) mkdir("/tmp/Temp-adeffb20-9595-4353-96a7-25e40f387b34", 0700) = 0 stat("/tmp/Temp-adeffb20-9595-4353-96a7-25e40f387b34", {st_mode=S_IFDIR|0700, st_size=0, ...}) = 0 stat("/home/mhw/.mozilla/icecat/3m5f1yqc.default-1476203579848/chrome", 0x7ffd2fa06780) = -1 ENOENT (No such file or directory) stat("/home/mhw/.mozilla/icecat/3m5f1yqc.default-1476203579848/extensions", {st_mode=S_IFDIR|0700, st_size=222, ...}) = 0 lstat("/run/user/1000/dconf", {st_mode=S_IFDIR|0700, st_size=60, ...}) = 0 lstat("/run/user/1000", {st_mode=S_IFDIR|0700, st_size=200, ...}) = 0 lstat("/run/user", {st_mode=S_IFDIR|0755, st_size=80, ...}) = 0 lstat("/run", {st_mode=S_IFDIR|0755, st_size=148, ...}) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuMathTeXGyre.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSans-Bold.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSans-BoldOblique.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSans-ExtraLight.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSans-Oblique.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSans.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSansCondensed-Bold.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSansCondensed-BoldOblique.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSansCondensed-Oblique.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSansCondensed.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSansMono-Bold.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSansMono-BoldOblique.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSansMono-Oblique.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSansMono.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSerif-Bold.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSerif-BoldItalic.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSerif-Italic.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSerif.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSerifCondensed-Bold.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSerifCondensed-BoldItalic.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSerifCondensed-Italic.ttf", R_OK) = 0 access("/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSerifCondensed.ttf", R_OK) = 0 access("/run/current-system/profile/share/fonts/cantarell/Cantarell-Bold.otf", R_OK) = 0 access("/run/current-system/profile/share/fonts/cantarell/Cantarell-BoldOblique.otf", R_OK) = 0 access("/run/current-system/profile/share/fonts/cantarell/Cantarell-Oblique.otf", R_OK) = 0 access("/run/current-system/profile/share/fonts/cantarell/Cantarell-Regular.otf", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/a010013l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/a010015l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/a010033l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/a010035l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/b018012l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/b018015l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/b018032l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/b018035l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/c059013l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/c059016l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/c059033l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/c059036l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/d050000l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019003l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019004l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019023l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019024l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019043l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019044l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019063l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019064l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n021003l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n021004l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n021023l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n021024l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n022003l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n022004l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n022023l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n022024l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/p052003l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/p052004l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/p052023l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/p052024l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/s050000l.pfb", R_OK) = 0 access("/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/z003034l.pfb", R_OK) = 0 access("/gnu/store/q080jqqgjrzdw9hjh510rivgviix32ww-icecat-60.8.0-guix1/lib/icecat/fonts/EmojiOneMozilla.ttf", R_OK) = 0 readlink("/proc/self/exe", "/gnu/store/q080jqqgjrzdw9hjh510r"..., 4095) = 87 openat(AT_FDCWD, "/home/mhw/.guix-profile/share/fonts/truetype/DejaVuSans.ttf", O_RDONLY) = 3 --8<---------------cut here---------------end--------------->8---