From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Subject: bug#37345: Icecat doesn't display numbers on Guix System Date: Mon, 9 Sep 2019 00:03:30 +0200 Message-ID: <20190909000330.0fb82b66@kompiuter> References: <20190908231011.239c57a0@kompiuter> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:53531) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i75Hz-0003lb-96 for bug-guix@gnu.org; Sun, 08 Sep 2019 18:04:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i75Hy-0003Ti-6T for bug-guix@gnu.org; Sun, 08 Sep 2019 18:04:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58678) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i75Hu-0003TE-U3 for bug-guix@gnu.org; Sun, 08 Sep 2019 18:04:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i75Hu-0000X1-P4 for bug-guix@gnu.org; Sun, 08 Sep 2019 18:04:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Jesse Gibbons Cc: 37345@debbugs.gnu.org On Sun, 08 Sep 2019 15:20:12 -0600 Jesse Gibbons wrote: > I cannot replicate. > What commit did you notice this? (guix describe) Since the beginning, not sure what commit (checked with 'guix system list-generations'), that was: "Generation 1 September 01 2019 01:15:51" Probably a fresh Guix System installation from the ISO image from the website. Now I run the following commit: ba7bd6c62ddaab4d5623fb149b47579e13a9e5f5 And the bug is still present > Are there any settings different from the default? I did nothing special to Icecat, just installed a few add-ons: Umatrix, Ublock Origin and "Dark Background and Light Text", these add-ons don't cause any problems on Firefox for example, but removed the ".mozilla" folder just to be sure, also I remember that displaying numbers hadn't worked since the beginning, even before I installed the add-ons. As for the system, here's my configuration file: (use-modules (gnu)) (use-service-modules desktop networking ssh xorg) (operating-system (locale "pl_PL.utf8") (timezone "Europe/Warsaw") (keyboard-layout (keyboard-layout "pl" "legacy")) (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda") (keyboard-layout keyboard-layout))) (swap-devices (list "/dev/sda3")) (file-systems (cons* (file-system (mount-point "/home") (device (uuid "640b9945-4421-403a-93da-02768c28b29b" 'btrfs)) (type "btrfs")) (file-system (mount-point "/") (device (uuid "55c8dec3-4e68-4441-9d78-a9b55d9fc9bd" 'ext4)) (type "ext4")) %base-file-systems)) (host-name "navi") (users (cons* (user-account (name "user") (comment "User") (group "users") (home-directory "/home/user") (supplementary-groups '("wheel" "netdev" "audio" "video"))) %base-user-accounts)) (packages (append (map specification->package '("i3-wm" "nss-certs" "icecat" "ungoogled-chromium" "libreoffice" "mpv" "gimp" "emacs" "emacs-paredit" "emacs-auto-complete" "gnupg" "htop")) %base-packages)) (services (append (list (service mate-desktop-service-type) (service tor-service-type) (extra-special-file "/usr/bin/env" (file-append coreutils "/bin/env")) (extra-special-file "/bin/bash" (file-append coreutils "/bin/bash")) (set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout)))) %desktop-services)))