Tips & Tricks
Last updated: 2026-08-05
🚀 Productivity Boosters
1. Menu Bar Quick Switch
The fastest way to switch projects:
- Click the Dev WorkDir icon in your menu bar
- Hover over a recent project
- Choose “Open in [Editor]” or “Run”
No need to open the main window. Most of the time, you can do everything from the menu bar.
2. Right-Click for More Options
Right-click (or Control-click) on any project card for quick actions:
- Open in specific editor
- Run different scripts
- Show in Finder
- Move project
- Add/remove from favorites
3. Keyboard Shortcuts
⌘N— Create new project⌘O— Add directory⌘,— Open Settings⌘W— Close window (app stays in menu bar)⌘F— Search projects
4. Custom Templates
Create templates for your go-to project setups:
- Go to Settings → Templates
- Click “Add Custom Template”
- Choose a base template or start from scratch
- Add your custom setup steps, dependencies, or configurations
- Save and use it anytime
Perfect for:
- Your personal starter kit with all your favorite packages
- Work-specific project structures
- Monorepo templates
5. Project Todos = Your Side Project Backlog
Don’t let ideas get lost:
- Select any project
- Go to the Todos tab
- Jot down ideas, bugs, or next steps
- They stay with the project, always
Pro tip: Use todos to capture “vibe ideas” when you’re working on something else. You’ll come back to them later.
6. Environment Variables Per Project
Stop copying and pasting env vars:
- Select a project
- Go to Environment Variables
- Add your key-value pairs
- They’re automatically injected when you double-click to run
Great for:
- API keys for side projects
- Database URLs
- Feature flags
7. Dotfiles Quick Access
Need to check your .zshrc or .gitconfig?
- Look at the Dotfiles section in the sidebar
- Click any config file to preview it
- No more opening hidden folders in Finder
8. Monorepo Sub-Project Quick Create
Working in a monorepo? Create sub-projects fast:
- Select your monorepo project
- Right-click → “Create Sub-Project”
- Choose a template
- It’s created inside your monorepo automatically
9. Double-Click Action Customization
Every project is different. Set the perfect action:
npm run devfor web projectscargo watch -x runfor Rustpython main.pyfor Pythondocker compose upfor Docker- Or just open in your editor
- Select a project
- Find “Double-Click Action” in the detail view
- Pick from detected scripts or enter a custom command
10. Workspaces with Multiple Directories
Organize different areas of your life:
~/Projects/work— Work projects~/Projects/side— Side projects~/Projects/learning— Tutorials and experiments
Add all of them to Dev WorkDir. Switch between directories in the sidebar.
💡 Lesser-Known Features
Git Worktree Detection
If you use Git worktrees, Dev WorkDir automatically detects them and shows the worktree name. Perfect for parallel development.
Auto-Detect New Projects
When you create a new project in Finder or Terminal, Dev WorkDir picks it up automatically. Just refresh (or it auto-refreshes).
Large File Optimization
When previewing files, Dev WorkDir handles large files gracefully — no freezing or slowdowns.
Project Move with Metadata
When you move a project between directories, all your settings (todos, env vars, double-click action) move with it.
🎯 Workflow Ideas
The Vibe Coder Flow
- Get an idea
- Menu bar → Create Project → pick template → 30 seconds
- Double-click to run
- Start coding in your AI editor
- Add todos for things to come back to
- When you’re done, close everything — it’s all in Dev WorkDir for next time
The Side Project Manager Flow
- Add all your side project folders
- Each project has its own todo list
- Use the menu bar to jump between them
- Never forget which project had that great idea again
The Monorepo Flow
- Add your monorepo root
- See all sub-projects at a glance
- Jump into any sub-project instantly
- Create new sub-projects in one click
Got a tip we should add? Let us know!