custom.js and custom.css utilities for Logseq.
Add handles on the query table headers to resize column width
Collapse namespace prefixes eg: [[prefix/page/test]] becomes [[../test]] (use the hover tootip to see the original name or enter edit mode)
Fetches and embeds tweets and timelines without using logseq's internal syntax {{tweet https://twitter.com/username/status/id}}
. Instead, you can just write the tweet url inline.
Benefits:
- doesn't add extra markup to the source file
- shows the timelines.
A demo with Logtool's kanban css to display latest tweets :
Enhance the right sidebar by replacing the vertical scroll with horizontal panes which are collapsible and resizable. Inspired by the sliding panes/matuschak mode with improved usability.
This works in conjunction with a custom.js snippet. If you don't want to use this sidebar mod, you need to REMOVE the better-sidebar javascript (edit the custom.js and comment out or remove the lines)
If you are not using any custom.js1 or custom.css, copy the files into your %graph-name%/logseq/
folder.
Alternatively, if you don't want to overwrite your current files or are only interested in some of the utilites :
- Open the desired file with a text editor/code editor
- Copy-paste the relevant sections into your own custom.js/custom.css files. Some utilities require to copy sections from both custom.js and custom.css to work. Make sure to include the mutation observer declaration at the start of the custom.js)
- Use the search function to find the relevant snippets delimited by comments with descriptive names. For custom.css, it's possible to add
@import url("https://cdn.jsdelivr.net/gh/cannibalox/logseq-custom-files@latest/custom.css");
at the beginning of your file.
- I'm glad to accept Pull Requests if you know how to improve or optimize the utilities.
- If you find this useful, you can also buy me a coffee :)
More js snippets and css customizations are coming soon, stay tuned
- v20240317 : fix better-sidebar css to work with logseq 0.10.x - depreceting support for older logseq versions
- v20230709 : fix better-sidebar's arrow location for logseq 0.9.10
- v20230214 : new: add better-sidebar, fix: props data-refs (
bg-pic::
) - v20220517 : new: add function to add properties to the data-refs attributes; new: add bg-pic attribute
- v20220517 : new: add function for tweet embed
- v20220331 : fix sorting : resizer handle was overlapping the table headers. moved style to custom.css
- v20220329 : fix for advanced queries
Footnotes
-
- custom.js has been introduced in logseq on 2021-11-10, see details here https://github.com/logseq/logseq/pull/2943
- The custom.js file is not created by the default installer; it has to be created manually in
/logseq
. - Before executing the code, the user will be asked for execution permission.
- When the content of the custom.js file is modified, it needs to be restarted or refreshed to take effect.