Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agateau/nanonote
A minimalist note taking application
https://github.com/agateau/nanonote
minimalist note-taking qt
Last synced: 13 days 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T14:16:54.000Z (about 2 months ago)
- Last Synced: 2024-10-11T09:28:41.060Z (28 days ago)
- Topics: minimalist, note-taking, qt
- Language: C++
- Homepage:
- Size: 21.5 MB
- Stars: 59
- Watchers: 7
- Forks: 11
- Open Issues: 8
-
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
[![Build Status](https://github.com/agateau/nanonote/actions/workflows/main.yml/badge.svg)](https://github.com/agateau/nanonote/actions/workflows/main.yml)
# Nanonote
Nanonote is a minimalist note taking application.
![Screenshot](screenshot.png)
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`.