Tabs on Startup #4125
|
I would like to open two tabs. First tab should be the active tab after start up.
I read through the documentation and it seem simple enough but it just doesn't work. Kitty.conf has "startup_session ~/.config/kitty/kitty-start". Below is my kitty-start new_tab xxxx Your help is greatly appreciated. |
Replies: 4 comments 2 replies
|
The first tab is created by default and there is no need to call Option 1) Use the implicit default focus, on first tab. Option 2) Explicitly defines the window to be activated. Option 3) You can use the |
|
@kovidgoyal For the remote control Like These are my personal opinions from the user's point of view. Does this make sense to you? Thank you. |
|
Sure I have added --dont-take-focus as an alias
|
|
Thanks for your assistance. I feel like I am only scratching the surface of what this terminal can do. I have looked through the docs but I don't know what I don't know. Is there anywhere where you can see what others have been doing with Kitty. Thanks BTW How would I make the Kitty open the right of the screen? |
The first tab is created by default and there is no need to call
new_tab.Each tab should have a window created using the
launchcommand.If you do not use
focusto explicitly specify the final active window inside the corresponding tab, then the first tab is active by default.Option 1) Use the implicit default focus, on first tab.
Option 2) Explicitly defines the window to be activated.
Option 3) You can use the
--keep-focus(later versions will have the alias--dont-take-focus) option when c…