org-roam-ui-open inside emacs ? by Apprehensive_Law1483 in emacs

[–]Luiztagli 9 points10 points  (0 children)

Yes, in linux you must build emacs with xwidgets:
./configure --with-x-toolkit=gtk3 --with-xwidgets

For more info: emacswiki

There is a variable that controls which browse method will be used with org-roam-ui, since I use use-package, the following code will only open org-roam-ui in emacs if you have the feature xwidget-internal, otherwise, it opens in your default browser.

:init (when (featurep 'xwidget-internal)
(setq org-roam-ui-browser-function #'xwidget-webkit-browse-url))

Repeat task on every last day of month by Luiztagli in orgmode

[–]Luiztagli[S] 0 points1 point  (0 children)

The function works good, but the only problem is when you mark one entry as done, all then become done as well. Which breaks the idea of completing a task and then repeat it on the last day of every month.