Sticky Notes is a simple note taking application for the GNOME desktop. It is written in GJS and uses GTK4.
Sticky Notes is available to download on Flathub.
To install from source, you need nodejs
and yarn
installed. Then, you need
to clone the repository by being careful to also pull in the submodules:
git clone https://github.com/vixalien/sticky.git --recurse-submodules
Then, you can build and install the application with meson
:
meson setup build
ninja -C build
sudo ninja -C build install
Tips:
- If you want to run the application without installing it, you can run
ninja -C build devel
instead ofsudo ninja -C build install
.