this post was submitted on 07 Mar 2024
8 points (100.0% liked)

Logseq

557 readers
25 users here now

Logseq is a knowledge management and collaboration platform. It focuses on privacy, longevity, and user control. It is Free Libre Open Source Software (AGPL-licensed).

Logseq offers a range of powerful tools for knowledge management, collaboration, PDF annotation, and task management with support for multiple file formats, including Markdown and Org-mode, and various features for organizing and structuring your notes.

Logseq's Whiteboard feature lets you organize your knowledge and ideas using a spatial canvas with shapes, drawings, website embeds, and connectors. You can visually group and link your notes and external media (such as videos and images), enabling visual thinkers to compose, remix, annotate, and connect content from their knowledge base and emerging thoughts in a new way.

In addition to its core features, Logseq has a growing ecosystem of plugins and themes that enable a wide range of workflows and customization options. Mobile apps are also available, providing access to most of the features of the desktop application. Whether you're a student, a professional, or anyone who values a clear and organized approach to managing your ideas and notes, Logseq is an excellent choice for anyone looking to improve their productivity and streamline their workflow.

founded 2 years ago
MODERATORS
 

EN: A question for the LogSeq experts: is it possible to design the different graphs differently? I always have several graphs open at the same time and would like to recognise immediately which graph I am in.
---
DE: Eine Frage an die LogSeq-Experten: gibt es die Möglichkeit, die verschiedenen Graphen optisch unterschiedlich zu gestalten? Ich habe ständig mehrere Graphen parallel offen und möchte sofort erkennen, in welchem Graphen ich mich befinde.

#LogSeq

top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 4 points 5 months ago (1 children)

@jeff @logseq have a css snippet that sets a custom background color on the header bar. I use different colors on the different graphs for exactly this purpose.

.cp__header {
background-color: pink;
}

[–] [email protected] 2 points 5 months ago

@asmund Oh, cool! That works. Thank you very much 🙂
Is there actually a list of CSS tags (like cp__header) that can be customised?

[–] [email protected] 2 points 5 months ago (1 children)

Yes, I think a lot of the config is per graph. That means you should be able to set custom css or stuff like journal queries differently for each graph.

[–] [email protected] 2 points 5 months ago (1 children)

@Inductor Great, that's good! - How and where can you define journal queries?

[–] [email protected] 2 points 5 months ago (1 children)

Under config.edn at :default-queries. Those are the queries it shows under the current journal page.

In config.edn you can also set all sorts of other stuff like which features are enabled and what the default page/sidebar is.

[–] [email protected] 2 points 5 months ago

@Inductor Ah, ok - Thank you for this hint 🙂