https://github.com/agateau/nanonote
A minimalist note taking application
https://github.com/agateau/nanonote
minimalist note-taking qt
Last synced: about 2 months ago
JSON representation
A minimalist note taking application
- Host: GitHub
- URL: https://github.com/agateau/nanonote
- Owner: agateau
- License: other
- Created: 2018-08-20T15:17:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T14:16:54.000Z (8 months ago)
- Last Synced: 2025-02-28T23:21:14.565Z (2 months ago)
- Topics: minimalist, note-taking, qt
- Language: C++
- Homepage:
- Size: 21.5 MB
- Stars: 59
- Watchers: 7
- Forks: 11
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - agateau/nanonote - A minimalist note taking application (qt)
README
[](https://github.com/agateau/nanonote/actions/workflows/main.yml)
# Nanonote
Nanonote is a minimalist note taking application.

It automatically saves anything you type. Being minimalist means it has no synchronisation, does not support multiple documents, images or any advanced formatting (the only formatting is highlighting URLs and Markdown-like headings).
It is developed and tested on Linux but also works on macOS and Windows as well.
## Packages
Binary packages for Linux, macOS and Windows are available on the [release page][].
[release page]: https://github.com/agateau/nanonote/releases
## Tips and tricks
Even if Nanonote has a minimalist user interface, it comes with some handy shortcuts. Learn more about them from the [tips and tricks page](docs/tips.md).
## Building it
Nanonote requires Qt 5 and CMake. To build it, do the following:
Get the source:
git clone https://github.com/agateau/nanonote
cd nanonote
git submodule update --initBuild Nanonote:
mkdir build
cd build
cmake ..
make
sudo make installYou can also build rpm and deb files using `make package` after `make`.