A simple and efficient backup tool written in Rust to compress and backup your notes folder.
- 🗂️ Compress notes folder into a ZIP file.
- 📂 Save backups to a specified directory.
- 🔔 Desktop notifications on completion.
- 🚀 Support for incremental backups (future plan).
- Clone the repository:
git clone https://github.com/Jalever/notes-keeper.git
cd notes-keeper
- Build the project:
cargo build --release
- Run the tool:
./target/release/notes-keeper
- Copy the example config file:
cp config.example.toml config.toml
- Edit
config.toml
with your paths:
[paths]
notes_folder = "/path/to/your/notes"
backup_folder = "/path/to/your/backup"