Call the ‘first-binding’ function for xbindkeys

All of the top-level key bindings have been put into this one function, so I
need to call it to actually enable the keybindings.
This commit is contained in:
Tom Willemse 2022-04-20 16:45:04 -07:00
parent 5056a6051b
commit 1f0cfee5a7

View file

@ -70,7 +70,8 @@
(map (lambda (key-pair) (map (lambda (key-pair)
(format #f " (xbindkey (quote ~s) ~s) \n" (car key-pair) (cdr key-pair))) (format #f " (xbindkey (quote ~s) ~s) \n" (car key-pair) (cdr key-pair)))
others) others)
(list " )\n"))))) (list " )\n"
"(first-binding)\n")))))
(define (add-xbindkeys-packages config) (define (add-xbindkeys-packages config)
(list (home-xbindkeys-configuration-package config))) (list (home-xbindkeys-configuration-package config)))