Getting Started with DumbNote
This guide will help you install DumbNote and create your first note in minutes.
Installation
Download DumbNote
- Visit the DumbNote releases page
- Download the appropriate version for your system:
- macOS:
.pkg installer (universal - works on Intel and Apple Silicon)
- Windows:
.exe installer
- Linux:
.AppImage or .deb file
Install on macOS
- Double-click the downloaded
.pkg file
- Follow the installation wizard steps
- Enter your password when prompted (for system installation)
- DumbNote will be installed in your Applications folder
- Launch from Applications or Spotlight search
Install on Windows
- Run the downloaded
.exe installer
- Follow the installation wizard
- DumbNote will create a desktop shortcut
- Launch from the Start menu or desktop
Install on Linux
AppImage (recommended):
chmod +x DumbNote-*.AppImage
./DumbNote-*.AppImage
Debian/Ubuntu:
sudo dpkg -i dumbnote_*.deb
First Launch
When you first open DumbNote, you’ll see:
- Welcome Note - A sample note with basic tips
- Sidebar - Your notes list (left side)
- Editor - The main writing area (center)
- Preview Toggle - Switch between edit and preview modes
Creating Your First Note
Method 1: Keyboard Shortcut
Press Cmd/Ctrl+N to create a new note instantly.
Go to File → New Note
Right-click in the sidebar and select “New Note”
Your new note will:
- Open automatically in the editor
- Have a temporary name like “Untitled-1”
- Auto-save as you type
Basic Editing
Writing Markdown
Start typing! DumbNote supports full CommonMark syntax:
# This is a heading
This is a paragraph with **bold** and _italic_ text.
- This is a list item
- Another item
- Nested item
1. Numbered list
2. Second item
Preview Your Note
Toggle preview mode with Cmd/Ctrl+Shift+V to see how your markdown renders.
Save Your Note
Notes auto-save every 5 seconds, but you can manually save with Cmd/Ctrl+S.
Rename Your Note
DumbNote automatically suggests filenames based on:
- Title in YAML frontmatter (highest priority)
- The first H1 heading (
# Title)
- The first line of text
- Falls back to “Untitled” if empty
Example with frontmatter title:
---
title: My Custom Title
---
# This heading won't be used as the title
To manually rename:
- Edit the filename directly in the file system
- Add/change the
title in YAML frontmatter
Understanding the Interface
- Notes List: All your markdown files
- Search Bar: Quick file search
- Tags Section: Organize by tags (collapsible)
- Context Menu: Right-click for options
Editor (Center)
- Monaco Editor: Full VS Code editing power
- Line Numbers: Clickable for selection
- Outline: Navigate long documents
- Status Bar: Shows cursor position
- File Operations: New, Save, Import
- View Controls: Toggle sidebar, preview
- Sync Status: GitHub sync indicator
Essential Features to Try
1. Smart Lists
Type - and press Enter to continue lists automatically:
- First item [Enter]
- Second item (auto-added dash)
- Tab to indent [Enter]
- Another nested item
2. Checkboxes
Create interactive task lists:
- [ ] Unfinished task
- [x] Completed task
Click checkboxes in preview mode to toggle!
3. Quick Date
Type @today and it expands to current date/time:
@today → 2024-01-09 14:30:45
@date → 2024-01-09
@time → 14:30:45
4. Emoji Picker
Type :: to open the emoji picker:
- Type
::
- Start typing emoji name
- Use arrows to select
- Press Enter to insert
Customizing Your Experience
Change Theme
- Go to theme selector (top-right)
- Choose from built-in themes:
- Dark themes: Default, Monokai, Nord, etc.
- Light themes: Clean, Paper, Solarized, etc.
Adjust Font Size
- Increase:
Cmd/Ctrl+Plus
- Decrease:
Cmd/Ctrl+Minus
- Reset:
Cmd/Ctrl+0
Hide the sidebar for distraction-free writing:
- Keyboard:
Cmd/Ctrl+\
- Menu:
View → Toggle Sidebar
Try Typewriter Mode
Keep your cursor centered on screen:
- Press
Cmd/Ctrl+Shift+T to enable
- Your cursor stays in the middle while text moves
- Perfect for long writing sessions
Your Notes Folder
To quickly access your notes folder, use File → Go to Notes Folder. This opens your notes directory in your system’s file manager.
DumbNote organizes your files as:
*.md - Your markdown notes
attachments/ - Embedded images and files
.dumbnote/ - App settings and cache (hidden)
Next Steps
Now that you’ve created your first note, explore these features:
- Learn Markdown - Master markdown syntax
- Keyboard Shortcuts - Work faster
- Tags, Favorites & Hub View - Organize your notes
- GitHub Sync - Backup your notes
Tips for New Users
💡 Pro Tips
- Auto-save is always on - No need to worry about losing work
- Markdown preview - Use
Cmd/Ctrl+Shift+V frequently
- Multiple windows - Open notes in separate windows
- Quick search -
Cmd/Ctrl+F works everywhere
- Fast startup - Pin DumbNote to your dock/taskbar
- Quick notes - Use
Cmd/Ctrl+N for instant new notes
- Efficient search - Search indexes automatically
🎯 Best Practices
- Use headings - Organize with
# headers
- Link notes - Type
[[ to link between notes
- Tag everything - Add tags in frontmatter
- Regular backups - Use export or GitHub sync
Getting Help
In-App Help
- Hover over any button for tooltips
- Check the Help menu for guides
Online Resources
Keyboard Help
Not sure about a shortcut? Check our complete Keyboard Shortcuts guide.
Ready to explore more? Continue to Editor Features →