I remember some time ago I saw someone posting an App for quickly opening all files and windows necessary for a given project. You could, for instance, set it up so, with a single click, you would open your text editor, some terminal windows running a given command, photoshop, some folders, etc.<p>Does any of you remember what program is that or use some custom solution for the same issue?<p>It's a huge pain to have to do that every time, specially if you switch between multiple projects
I don't know the app you're talking about, but I solve this using persistent tmux sessions [1]. I use (Neo)Vim as my text editor, so it's just part of the tmux session. Each project has its own session.<p>I am aware that this doesn't really help you as your question seems to suggest you are not using an editor that can be run in the terminal.<p>[1] <a href="https://github.com/tmux-plugins/tmux-resurrect" rel="nofollow">https://github.com/tmux-plugins/tmux-resurrect</a>
In macOS I've used Keyboard maestro for this. It allows you to define actions you can click in the menu bar as well.<p>You could also write a simple bash script to do it. If you also like this in the menu bar you can download BitBar which easily lets you put actions into the menu bar via python/bash/etc. I have a lot of stuff like this, very much as project overview and shortcut area.
I write simple bash scripts for this that I put in my path e.g. if you type "project123" in the terminal, it will open the project in VS Code, open the git repo is SourceTree, open the API docs in Chrome, start the local server etc. Usually I make it close all those programs first as well so it's a clean slate.<p>Pretty simple and really flexible.
I found <a href="https://apps.apple.com/us/app/workspaces/id1219826448?mt=12" rel="nofollow">https://apps.apple.com/us/app/workspaces/id1219826448?mt=12</a> recently
Don't know the specific solution you're talking about, but I'm currently making a mac app that handles this.<p>Open beta this winter.<p><a href="https://cleave.app" rel="nofollow">https://cleave.app</a>
It is probably Workspaces. It is quite limited though, I'm planning to set this up using Alfred on macOS which is using AppleScript under the hood.