A personal Flutter-based clone of Notion, built for Linux. This app helps you organize pages and notes in a familiar, block-based editor interface.
- Create and edit nested pages
- Rich text editor with basic formatting
- Database-like properties for pages
- Offline functionality with local data storage
- Flutter SDK (with Linux support enabled)
- wmctrl (for window management) - Install with:
sudo dnf install wmctrlgit clone https://github.com/your-username/notion-clone-linux.git
cd notion-clone-linux
flutter pub get
flutter build linux --releasemkdir -p ~/Applications
cp -r build/linux/x64/release/bundle ~/Applications/Notion
cp launch.sh ~/Applications/Notion/
chmod +x ~/Applications/Notion/launch.sh~/Applications/Notion/launch.shCreate ~/.local/share/applications/notion.desktop:
[Desktop Entry]
Version=1.0
Type=Application
Name=Notion Clone
Comment=Personal Notion-like app for Linux
Exec=/home/your-username/Applications/Notion/launch.sh
Icon=/home/your-username/Applications/Notion/icon.png
Categories=Office;Productivity;
Terminal=false
StartupWMClass=notionchmod +x ~/.local/share/applications/notion.desktop
update-desktop-database ~/.local/share/applications