Compare commits

...

4 Commits

Author SHA1 Message Date
Lucien Cartier-Tilet 53de06b844
[StumpWM] Fix concurrency issue
continuous-integration/drone/push Build is passing Details
2022-05-19 18:20:33 +02:00
Lucien Cartier-Tilet 3a80cc13d2
Update sitemap 2022-05-19 18:20:25 +02:00
Lucien Cartier-Tilet 82aee2bf9e
[Emacs] Add Reddit option for atomic chromium 2022-05-19 18:19:26 +02:00
Lucien Cartier-Tilet 20e758789e
[Emacs] Update package specifications 2022-05-19 18:19:04 +02:00
3 changed files with 11 additions and 12 deletions

View File

@ -2945,7 +2945,8 @@ 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)
("labs\\.phundrak\\.com" . markdown-mode))))
("reddit\\.com" . markdown-mode))))
("labs\\.phundrak\\.com" . markdown-mode)
#+end_src
*** Editorconfig
@ -4910,13 +4911,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 ol-conlang
(use-package org-conlang
:defer t
:after '(org ol)
:straight (ol-conlang :type git
:host nil
:repo "https://labs.phundrak.com/phundrak/ol-conlang"
:build t))
:after '(org ol ox)
:straight (org-conlang :type git
:host nil
:repo "https://labs.phundrak.com/phundrak/org-conlang"
:build t))
#+end_src
**** Epub

View File

@ -13,7 +13,7 @@
- [[file:stumpwm.org][StumpWM config]]
- [[file:tmux.org][Tmux config]]
- Deprecated
- [[file:awesome.org][AwesomeWM configuration]]
- [[file:Deprecated/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,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