Crates.io | rucola-notes |
lib.rs | rucola-notes |
version | 0.4.1 |
source | src |
created_at | 2024-07-21 22:47:58.006415 |
updated_at | 2024-11-11 16:56:11.736558 |
description | Terminal-based markdown note manager. |
homepage | https://github.com/Linus-Mussmaecher/rucola |
repository | https://github.com/Linus-Mussmaecher/rucola |
max_upload_size | |
id | 1310617 |
size | 484,402 |
Terminal-based markdown note manager to view statistics, explore connections and launch editing and viewing applications.
In the select & overview screen:
Viewing a single note:
A default light theme is also included.
[!TIP] Default themes will adjust to your terminal colors, but the entire style can be fully customized.
Rucolas is made for users of a zettelkasten-style note system of interlinked markdown notes that want to do most of their note taking directly from within the terminal.
Compared to UI-note taking tools such as Obsidian, Evernote or Notion ...
Compared to using only a terminal text editor (such as vim, emacs or helix) to manage markdown notes ...
[!TIP] Most text editors or terminal emulators provide some way to open a file in an already running instance - open rucola and your favourite editor next to one another and use rucola like a more note-specific file picker.
The current version supports all features originally envisioned for this project and has been tested in daily use for some months. This does not mean that development is finished. Future plans include:
Rucola has no requirements, but a Nerd font may be required on your machine to display some of the icons properly.
For installation instructions via shell script, .msi
, homebrew or tarball, see the latest release.
These installers are generated using cargo dist
and are provided for Windows, Mac and Linux.
You can install rucola
from the official repositories using pacman:
pacman -S rucola
Install using cargo
from crates.io
:
cargo install --locked rucola-notes
If you want to build the latest commit of rucola by yourself, you can clone the repository, build & install:
git clone https://github.com/Linus-Mussmaecher/rucola
cd rucola
cargo install --locked --path .
Rucola can be launched from your command line with the rucola
command.
[!TIP] For more information on possible configuration options, features and usage tips, see the GitHub Wiki.
Rucola requires three configuation files:
config.toml
: The main TOML configuration file. See the Wiki for its entries.<style>.toml
: A TOML style file to customize the appearance of rucola itself. The exact name is given in config.toml
. See the Wiki for its entries.<cssstyle>.css
: A CSS style file to customize the appearance of the HTML files created when converting markdown notes.One default config file, 2 TOML style files (light & dark theme) and 2 CSS style files (light & dark theme) can be found in this repository's default_config
folder.
These files should be installed on your system by any install method into rucola's default config folder.
See the Wiki for that folders expected location.
Rucola is implemented using the ratatui framework in Rust. Markdown parsing is done via comrak.
LaTeX compilation & macro system is facilitated by KaTeX while code highlighting is done with highlight.js.
Rucola is released under the GNU General Public License v3.
Copyright (C) 2024 Linus Mußmächer linus.mussmaecher@gmail.com
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.