Temporarily prefer start-process instead of prelude/start-process

While my `prelude/start-process` function cannot support arguments in the form
of `'single quotes'`, I'm using `start-process`.
This commit is contained in:
William Carroll 2020-01-19 14:26:35 +00:00
parent 2a9fadd092
commit 8a657fff7f

View file

@ -67,12 +67,10 @@
(interactive)
;; TODO: Ensure these work once the tokenizing in prelude/start-process works
;; as expected.
(prelude/start-process
:name "keyboard/swap-caps-lock-and-escape"
:command "xmodmap -e 'remove Lock = Caps_Lock'")
(prelude/start-process
:name "keyboard/swap-caps-lock-and-escape"
:command "xmodmap -e 'keysym Caps_Lock = Escape'"))
(start-process "keyboard/swap-caps-lock-and-escape" nil "/usr/bin/xmodmap" "-e"
"remove Lock = Caps_Lock")
(start-process "keyboard/swap-caps-lock-and-escape" nil "/usr/bin/xmodmap" "-e"
"keysym Caps_Lock = Escape"))
(defun keyboard/inc-repeat-rate ()
"Increment `keyboard/repeat-rate'."