[StumpWM] Fix concurrency issue
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Lucien Cartier-Tilet 2022-05-19 18:20:33 +02:00
parent 3a80cc13d2
commit 53de06b844
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 2 additions and 4 deletions

View File

@ -1689,16 +1689,14 @@ we can easily define how to turn on bluetooth.
#+begin_src lisp
(defcommand bluetooth-turn-on () ()
"Turn on bluetooth."
(sb-thread:make-thread
(lambda () (bluetooth-message-command "power" "on"))))
(bluetooth-message-command "power" "on"))
#+end_src
And how to power it off.
#+begin_src lisp
(defcommand bluetooth-turn-off () ()
"Turn off bluetooth."
(sb-thread:make-thread
(lambda () (bluetooth-message-command "power" "off"))))
(bluetooth-message-command "power" "off"))
#+end_src
*** Bluetooth Devices