Desktop Installation
Detailed installation instructions for all desktop platforms.
Linux
Arch Linux (AUR)
The easiest way to install on Arch-based distributions:
# Using yay
yay -S mindwtr-bin
# Using paru
paru -S mindwtr-bin
# Using pamac (Manjaro)
pamac install mindwtr-binDebian / Ubuntu
Add the APT repo (recommended):
curl -fsSL https://dongdongbh.github.io/Mindwtr/mindwtr.gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/mindwtr-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/mindwtr-archive-keyring.gpg] https://dongdongbh.github.io/Mindwtr/deb ./" | sudo tee /etc/apt/sources.list.d/mindwtr.list
sudo apt update
sudo apt install mindwtrManual install: download the .deb from GitHub Releases and run sudo dpkg -i mindwtr_*.deb.
Fedora / RHEL / openSUSE
Add the DNF/YUM repo (recommended):
cat <<'EOF' | sudo tee /etc/yum.repos.d/mindwtr.repo
[mindwtr]
name=Mindwtr Repository
baseurl=https://dongdongbh.github.io/Mindwtr/rpm
enabled=1
gpgcheck=0
EOF
sudo dnf install mindwtrManual install: download the .rpm from GitHub Releases and run sudo rpm -i mindwtr-*.rpm.
Flatpak (Flathub)
Install from Flathub:
flatpak install flathub tech.dongdongbh.mindwtrRun it with:
flatpak run tech.dongdongbh.mindwtrAppImage (Universal)
Works on most Linux distributions:
# Download the versioned AppImage from:
# https://github.com/dongdongbh/Mindwtr/releases/latest
# Make executable
chmod +x Mindwtr-*.AppImage
# Run
./Mindwtr-*.AppImageTip: Use AppImageLauncher for better desktop integration.
Other Distributions
For other distributions, use the AppImage or build from source (see Developer Guide).
Windows
Microsoft Store (Recommended)
Install from the Microsoft Store: https://apps.microsoft.com/detail/9n0v5b0b6frx?ocid=webpdpshare
Winget
Winget is built into Windows 10 and 11. Install Mindwtr with:
winget install dongdongbh.MindwtrScoop
If you use Scoop:
scoop bucket add mindwtr https://github.com/dongdongbh/homebrew-mindwtr
scoop install mindwtrInstaller (.msi or .exe)
- Download the installer from GitHub Releases
- Run the installer
- Follow the installation wizard
- Launch Mindwtr from the Start menu
Portable
- Download
mindwtr_<version>_windows_x64_portable.zipfrom GitHub Releases. - Extract it to any writable folder.
- Keep
portable.txtnext tomindwtr.exe.
Portable mode stores local state beside the executable:
profile/data/for the SQLite DB, sync JSON, logs, snapshots, and audio capturesprofile/config/forconfig.tomlandsecrets.toml
Windows WebView2 is still required.
macOS
Homebrew (Recommended)
Install using Homebrew:
brew install --cask mindwtrDisk Image (.dmg)
- Download the
.dmgfrom GitHub Releases - Open the disk image
- Drag Mindwtr to your Applications folder
- Launch from Applications or Spotlight
Data Location
After installation, your data is stored at:
| Platform | SQLite DB | Sync JSON |
|---|---|---|
| Linux | ~/.local/share/mindwtr/mindwtr.db | ~/.local/share/mindwtr/data.json |
| Windows | %APPDATA%/mindwtr/mindwtr.db | %APPDATA%/mindwtr/data.json |
| macOS | ~/Library/Application Support/mindwtr/mindwtr.db | ~/Library/Application Support/mindwtr/data.json |
Flatpak installs use sandboxed XDG paths under ~/.var/app/tech.dongdongbh.mindwtr/. You can always check the exact active paths in Settings → Sync → Local Data.
Config is stored separately:
| Platform | Location |
|---|---|
| Linux | ~/.config/mindwtr/config.toml |
| Windows | %APPDATA%/mindwtr/config.toml |
| macOS | ~/Library/Application Support/mindwtr/config.toml |
Updating
- Check for updates in Settings → About → Check for Updates
- Download the new version from Releases
- Install over your existing installation
Your data is preserved between updates.
Uninstalling
Linux (Package Manager)
# AUR
yay -R mindwtr-bin
# Debian/Ubuntu
sudo dpkg -r mindwtr
# Flatpak
flatpak uninstall tech.dongdongbh.mindwtrWindows
Use "Add or Remove Programs" in Windows Settings.
macOS
Drag Mindwtr from Applications to Trash.
Data Cleanup
To remove all data, delete both the config and data directories:
# Linux
rm -rf ~/.config/mindwtr
rm -rf ~/.local/share/mindwtr
# macOS
rm -rf ~/Library/Application\ Support/mindwtr
# Windows (PowerShell)
Remove-Item -Recurse -Force "$env:APPDATA\\mindwtr"Troubleshooting
App Won't Start (Linux)
Ensure WebKitGTK is installed:
# Arch
sudo pacman -S webkit2gtk-4.1
# Debian/Ubuntu
sudo apt install libwebkit2gtk-4.1-0Missing Icons
Install a complete icon theme:
sudo pacman -S papirus-icon-themeBlank Window
Try running with GPU disabled:
WEBKIT_DISABLE_DMABUF_RENDERER=1 mindwtr