Compare commits

..

No commits in common. "53de06b844bca337a5bb43b645c7e8604c60f1f0" and "c7519cfd9d45246e887b0d31140efe685387c928" have entirely different histories.

3 changed files with 12 additions and 11 deletions

View File

@ -2945,8 +2945,7 @@ bit unfortunate Chromes name stuck in the packages name though.
(setq atomic-chrome-default-major-mode 'markdown-mode
atomic-chrome-url-major-mode-alist `(("github\\.com" . gfm-mode)
("gitlab\\.com" . gfm-mode)
("reddit\\.com" . markdown-mode))))
("labs\\.phundrak\\.com" . markdown-mode)
("labs\\.phundrak\\.com" . markdown-mode))))
#+end_src
*** Editorconfig
@ -4911,13 +4910,13 @@ to be compatible with ~ox-conlang-tsx~.
Finally, I also need a handler for custom links begining in ~conlang~,
like ~[[conlang:English:dog]]~. ~ol-conlang~ handles that.
#+begin_src emacs-lisp
(use-package org-conlang
(use-package ol-conlang
:defer t
:after '(org ol ox)
:straight (org-conlang :type git
:host nil
:repo "https://labs.phundrak.com/phundrak/org-conlang"
:build t))
:after '(org ol)
:straight (ol-conlang :type git
:host nil
:repo "https://labs.phundrak.com/phundrak/ol-conlang"
:build t))
#+end_src
**** Epub

View File

@ -13,7 +13,7 @@
- [[file:stumpwm.org][StumpWM config]]
- [[file:tmux.org][Tmux config]]
- Deprecated
- [[file:Deprecated/awesome.org][AwesomeWM configuration]]
- [[file:awesome.org][AwesomeWM configuration]]
- [[file:Deprecated/nano.org][Nano configuration]]
- [[file:Deprecated/polybar.org][Polybar config]]
- [[file:Deprecated/spacemacs.org][Spacemacs Configuration]]

View File

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