installer: keymap: Do not fail on non-kmscon terminals.
kmscon-update-keymap fails on non kmscon terminals because KEYMAP_UPDATE environment variable is not defined. As it is convenient to test the installer on a regular terminal, do nothing if KEYMAP_UPDATE is missing. * gnu/installer/keymap.scm (kmscon-update-keymap): Do nothing if KEYMAP_UPDATE is not defined.
This commit is contained in:
parent
7d812901da
commit
479414e1c9
|
@ -149,18 +149,24 @@ Configuration Database, describing possible XKB configurations."
|
|||
(values models layouts)))))
|
||||
|
||||
(define (kmscon-update-keymap model layout variant)
|
||||
(let ((keymap-file (getenv "KEYMAP_UPDATE")))
|
||||
(unless (and keymap-file
|
||||
(file-exists? keymap-file))
|
||||
(error "Unable to locate keymap update file"))
|
||||
"Update kmscon keymap with the provided MODEL, LAYOUT and VARIANT."
|
||||
(and=>
|
||||
(getenv "KEYMAP_UPDATE")
|
||||
(lambda (keymap-file)
|
||||
(unless (file-exists? keymap-file)
|
||||
(error "Unable to locate keymap update file"))
|
||||
|
||||
(call-with-output-file keymap-file
|
||||
(lambda (port)
|
||||
(format port model)
|
||||
(put-u8 port 0)
|
||||
;; See file gnu/packages/patches/kmscon-runtime-keymap-switch.patch.
|
||||
;; This dirty hack makes possible to update kmscon keymap at runtime by
|
||||
;; writing an X11 keyboard model, layout and variant to a named pipe
|
||||
;; referred by KEYMAP_UPDATE environment variable.
|
||||
(call-with-output-file keymap-file
|
||||
(lambda (port)
|
||||
(format port model)
|
||||
(put-u8 port 0)
|
||||
|
||||
(format port layout)
|
||||
(put-u8 port 0)
|
||||
(format port layout)
|
||||
(put-u8 port 0)
|
||||
|
||||
(format port variant)
|
||||
(put-u8 port 0)))))
|
||||
(format port variant)
|
||||
(put-u8 port 0))))))
|
||||
|
|
Loading…
Reference in New Issue