guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/05: install: Use a font with more glyphs on tty2.


From: guix-commits
Subject: 04/05: install: Use a font with more glyphs on tty2.
Date: Fri, 12 Apr 2019 11:56:31 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 13fd0a30877acc8c152c37d0b04158f7b65e4646
Author: Ludovic Courtès <address@hidden>
Date:   Fri Apr 12 17:19:31 2019 +0200

    install: Use a font with more glyphs on tty2.
    
    * gnu/system/install.scm (%installation-services): For
    'console-font-service-type', use LatGrkCyr-8x16 on tty2.
---
 gnu/system/install.scm | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index d373158..c32bb60 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -342,12 +342,18 @@ Access documentation at any time by pressing 
Alt-F2.\x1b[0m
           ;; since it takes the installation directory as an argument.
           (cow-store-service)
 
-          ;; Install Unicode support and a suitable font.  Use a font that
-          ;; doesn't have more than 256 glyphs so that we can use colors with
-          ;; varying brightness levels (see note in setfont(8)).
+          ;; Install Unicode support and a suitable font.
           (service console-font-service-type
-                   (map (lambda (tty)
-                          (cons tty "lat9u-16"))
+                   (map (match-lambda
+                          ("tty2"
+                           ;; Use a font that contains characters such as
+                           ;; curly quotes as found in the manual.
+                           '("tty2" . "LatGrkCyr-8x16"))
+                          (tty
+                           ;; Use a font that doesn't have more than 256
+                           ;; glyphs so that we can use colors with varying
+                           ;; brightness levels (see note in setfont(8)).
+                           `(,tty . "lat9u-16")))
                         '("tty1" "tty2" "tty3" "tty4" "tty5" "tty6")))
 
           ;; To facilitate copy/paste.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]