Notey runs natively on macOS, Linux, and Windows.
The easiest way to install Notey is to grab a prebuilt bundle from the Releases page. Release builds are produced for:
- macOS — Apple Silicon (arm64) and Intel (x64)
- Linux — x64 and arm64
- Windows — x64
Download the artifact for your platform and install it the usual way for your OS
(open the .dmg on macOS, the .AppImage/.deb on Linux, or the installer on
Windows).
Release artifacts are currently unsigned, so your OS warns you the first time you launch. This is expected — follow your platform's "open anyway" flow once and the app runs normally thereafter:
-
macOS — Gatekeeper shows "Notey can't be opened because it is from an unidentified developer." Either right-click (or Control-click) the app → Open → Open, or clear the quarantine flag from a terminal:
xattr -dr com.apple.quarantine /Applications/Notey.app
-
Windows — SmartScreen shows "Windows protected your PC." Click More info → Run anyway.
-
Linux — make the AppImage executable, then run it:
chmod +x Notey_*.AppImage ./Notey_*.AppImage
Or install the Debian package:
sudo dpkg -i Notey_*.deb(orsudo apt install ./Notey_*.debto pull in dependencies).
Once installed, Notey checks for new releases on startup and shows an in-app banner offering to install and restart when a newer version is published — no manual re-download needed.
Notey starts hidden in the system tray — there is no window on screen at first. To open it:
- Press the global capture hotkey:
Ctrl+Shift+N(Cmd+Shift+Non macOS), or - Click the Notey tray icon and choose Open Notey.
On first run you'll see a short onboarding overlay showing the capture hotkey, which you can customize. On macOS you may be prompted to grant Accessibility permission so the global hotkey can work.
See the user guide to learn your way around.
To have Notey launch automatically when you log in, open Settings
(Ctrl+,) and enable Start on login.
You'll need:
- Node.js 20+ and npm
- Rust via rustup (the pinned toolchain in
rust-toolchain.tomlis selected automatically) - The Tauri system dependencies for your OS
On Debian/Ubuntu Linux:
sudo apt-get install -y \
libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libxdo-devThen:
git clone https://github.com/pbean/notey.git
cd notey
npm install
# Run in development (hot-reload):
npm run tauri dev
# Or produce an optimized build for your platform:
npx tauri buildThe bundled installers/binaries are written under src-tauri/target/release/bundle/.
For the full contributor setup, see CONTRIBUTING.md.