guix-commits
[Top][All Lists]
Advanced

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

01/01: services: Add console-keymap service.


From: Alex Kost
Subject: 01/01: services: Add console-keymap service.
Date: Fri, 01 May 2015 18:05:14 +0000

alezost pushed a commit to branch master
in repository guix.

commit 5eca94594d5f0d834d4ca918b894400e3a7f6aa1
Author: Alex Kost <address@hidden>
Date:   Sat Apr 25 22:52:29 2015 +0300

    services: Add console-keymap service.
    
    * gnu/services/base.scm (console-keymap-service): New procedure.
    * doc/guix.texi (Base Services): Document it.
    
    Co-authored-by: 宋文武 <address@hidden>
---
 doc/guix.texi         |    5 +++++
 gnu/services/base.scm |   15 +++++++++++++++
 2 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index dd6af80..c68e291 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -4745,6 +4745,11 @@ passed to @command{guix-daemon}.
 Run @var{udev}, which populates the @file{/dev} directory dynamically.
 @end deffn
 
address@hidden {Monadic Procedure} console-keymap-service @var{file}
+Return a service to load console keymap from @var{file} using
address@hidden command.
address@hidden deffn
+
 
 @node Networking Services
 @subsubsection Networking Services
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index d0a2e8c..697b939 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <address@hidden>
+;;; Copyright © 2015 Alex Kost <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -46,6 +47,7 @@
             swap-service
             user-processes-service
             host-name-service
+            console-keymap-service
             console-font-service
             udev-service
             mingetty-service
@@ -313,6 +315,19 @@ stopped before 'kill' is called."
           (else
            (zero? (cdr (waitpid pid))))))))
 
+(define (console-keymap-service file)
+  "Return a service to load console keymap from @var{file}."
+  (with-monad %store-monad
+    (return
+     (service
+      (documentation
+       (string-append "Load console keymap (loadkeys)."))
+      (provision '(console-keymap))
+      (start #~(lambda _
+                 (zero? (system* (string-append #$kbd "/bin/loadkeys")
+                                 #$file))))
+      (respawn? #f)))))
+
 (define* (console-font-service tty #:optional (font "LatGrkCyr-8x16"))
   "Return a service that sets up Unicode support in @var{tty} and loads
 @var{font} for that tty (fonts are per virtual console in Linux.)"



reply via email to

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