feat: add mono hyperlegible

This commit is contained in:
Kat Inskip 2026-02-05 10:18:11 -08:00
parent fcab621864
commit f65d96984f
4 changed files with 23 additions and 2 deletions

View file

@ -21,4 +21,4 @@
(scroll-bar-mode -1)
(add-to-list 'default-frame-alist '(alpha-background . 90))
(set-frame-font "Atkinson Hyperlegible Next 10" nil t)
(set-frame-font "Atkinson Hyperlegible Mono 8" nil t)

View file

@ -1,5 +1,5 @@
[main]
font=Atkinson Hyperlegible Next:size=10
font=Atkinson Hyperlegible Mono:size=8
[colors]
alpha=0.9

View file

@ -126,6 +126,7 @@
starship
font-awesome
font-atkinson-hyperlegible-next
font-atkinson-hyperlegible-mono
fastfetch
pavucontrol
ripgrep

View file

@ -1,6 +1,26 @@
(define-module (packages fonts)
#:use-module (guix build-system font))
(define-public font-atkinson-hyperlegible-mono
(package
(name "font-atkinson-hyperlegible-mono")
(version "2.001-unstable-2024-11-20")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/googlefonts/atkinson-hyperlegible-mono")
(commit "154d50362016cc3e873eb21d242cd0772384c8f9")))
(file-name (git-file-name name version))
(sha256
(base32 "0000000000000000000000000000000000000000000000000000"))))
(build-system font-build-system)
(home-page "https://www.brailleinstitute.org/freefont/")
(synopsis "New (2024) monospace sibling family to Atkinson Hyperlegible Next")
(description
"Read Easier With Our Family of Hyperlegible® Fonts")
(license license:ofl)))
(define-public font-atkinson-hyperlegible-next
(package
(name "font-atkinson-hyperlegible-next")