feat: add mono hyperlegible
This commit is contained in:
parent
fcab621864
commit
f65d96984f
4 changed files with 23 additions and 2 deletions
|
|
@ -21,4 +21,4 @@
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode -1)
|
||||||
|
|
||||||
(add-to-list 'default-frame-alist '(alpha-background . 90))
|
(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)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
[main]
|
[main]
|
||||||
font=Atkinson Hyperlegible Next:size=10
|
font=Atkinson Hyperlegible Mono:size=8
|
||||||
|
|
||||||
[colors]
|
[colors]
|
||||||
alpha=0.9
|
alpha=0.9
|
||||||
|
|
|
||||||
1
home.scm
1
home.scm
|
|
@ -126,6 +126,7 @@
|
||||||
starship
|
starship
|
||||||
font-awesome
|
font-awesome
|
||||||
font-atkinson-hyperlegible-next
|
font-atkinson-hyperlegible-next
|
||||||
|
font-atkinson-hyperlegible-mono
|
||||||
fastfetch
|
fastfetch
|
||||||
pavucontrol
|
pavucontrol
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,26 @@
|
||||||
(define-module (packages fonts)
|
(define-module (packages fonts)
|
||||||
#:use-module (guix build-system font))
|
#: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
|
(define-public font-atkinson-hyperlegible-next
|
||||||
(package
|
(package
|
||||||
(name "font-atkinson-hyperlegible-next")
|
(name "font-atkinson-hyperlegible-next")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue