Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a shortcut for a tab in Console2?

In Console2, I have 2 tabs. The first is called "Console2" and it's the default tab. The second is called "Git Bash" and it's the Console2 replacement for Git Bash CMD.

I would like to create a shortcut to the tab "Git Bash". So every time I click this shortcut. I open Console2 with the tab "Git Bash". The current Console2 default tab is "Console2" and I hope to keep it that way.

Any solutions?

like image 508
fall Avatar asked May 15 '12 14:05

fall


2 Answers

I found the solution at Console2 forum here

To create a shortcut for a tab, create a Windows shortcut with the Target field set with

"C:\path\to\Console.exe" -t "Tab Name"

like image 193
fall Avatar answered Nov 14 '22 12:11

fall


another method is using batch file

create a yadayada.bat file with this content:

start /d "D:\.....\Desktop\Console2" Console.exe -t "tab1" -t "tab2" -t "tab3"
like image 45
mkb Avatar answered Nov 14 '22 11:11

mkb