Download and install Kindling on your platform.
Get the latest release from the GitHub Releases page.
| Platform | File | Description |
|---|---|---|
| macOS (Apple Silicon) | Kindling_*_aarch64.dmg |
For M1, M2, M3 Macs |
| macOS (Intel) | Kindling_*_x64.dmg |
For Intel-based Macs |
| Windows | Kindling_*_x64-setup.msi |
Windows installer |
| Linux | Kindling_*_amd64.AppImage |
Portable, works on most distros |
| Linux (Debian/Ubuntu) | kindling_*_amd64.deb |
Native package for apt-based systems |
To ensure you downloaded the authentic Kindling release:
checksums.sha256 from the same releaseVerify the file with your platform:
:::bash
shasum -a 256 -c checksums.sha256 --ignore-missing
certutil -hashfile Kindling_*_x64-setup.msi SHA256
If your checksum doesn't match, delete the file and re-download from the official release page.
Kindling is not code-signed with an Apple Developer certificate. When you first open the app, macOS will show a security warning.
Gatekeeper warns about apps that aren't signed with an Apple Developer certificate. As an open-source project, Kindling ships with ad-hoc signing instead. You can verify authenticity using the checksums above and by reviewing the source code on GitHub.
.dmg file to mount itAfter this one-time setup, Kindling will open normally.
.dmg file to mount itAfter this one-time setup, Kindling will open normally.
If the above methods don't work, you can remove the quarantine attribute:
xattr -cr /Applications/Kindling.app
Then open Kindling normally.
Kindling is not signed with a Windows code signing certificate. Windows SmartScreen may show a warning when you first run the installer.
.msi installerAfter installation, Kindling will run without warnings.
SmartScreen warns about apps that don't have an established reputation with Microsoft. As more users download and run Kindling, this warning will eventually disappear. Code signing certificates are expensive ($200-500/year), so we've opted to ship unsigned for now.
AppImage is a portable format that works on most Linux distributions without installation.
# Download the AppImage
# Make it executable
chmod +x Kindling_*.AppImage
# Run it
./Kindling_*.AppImage
To add Kindling to your application menu:
# Install AppImageLauncher (recommended)
# Or manually create a .desktop file
# Move AppImage to a permanent location
mkdir -p ~/Applications
mv Kindling_*.AppImage ~/Applications/
# Create desktop entry
cat > ~/.local/share/applications/kindling.desktop << EOF
[Desktop Entry]
Name=Kindling
Exec=$HOME/Applications/Kindling_*.AppImage
Icon=kindling
Type=Application
Categories=Office;Writing;
EOF
For Debian-based distributions (Ubuntu, Linux Mint, Pop!_OS, etc.):
# Install the package
sudo dpkg -i kindling_*.deb
# If there are dependency issues
sudo apt-get install -f
Launch Kindling from your application menu or run kindling in the terminal.
sudo apt remove kindling
This usually means the quarantine attribute is corrupted. Remove it with:
xattr -cr /Applications/Kindling.app
Ensure you downloaded the correct version:
aarch64.dmgx64.dmgCheck your Mac's chip: Apple menu → About This Mac → Chip/Processor.
Try running the installer as Administrator:
.msi fileEnsure FUSE is installed:
# Ubuntu/Debian
sudo apt install libfuse2
# Fedora
sudo dnf install fuse
AppImages don't always integrate with desktop environments automatically. Use AppImageLauncher or create a .desktop file manually (see above).
If you prefer to build Kindling yourself, see the README for instructions.