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

View File

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

View File

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