1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-04 17:45:23 +03:00
wezterm/docs/config/lua/mux-events/mux-startup.md

35 lines
900 B
Markdown
Raw Normal View History

# `mux-startup`
2022-06-25 00:58:18 +03:00
*Since: 20220624-141144-bd1b7c5d*
The `mux-startup` event is emitted once when the mux server is starting up.
It is triggered before any default program is started.
If the `mux-startup` event causes any panes to be created then those will
take precedence over the default program configuration and no additional
default program will be spawned.
This event is useful for starting a set of programs in a standard
configuration to save you the effort of doing it manually each time:
```lua
local wezterm = require 'wezterm'
local mux = wezterm.mux
-- this is called by the mux server when it starts up.
-- It makes a window split top/bottom
wezterm.on('mux-startup', function()
local tab, pane, window = mux.spawn_window {}
pane:split { direction = 'Top' }
end)
return {
unix_domains = {
{ name = 'unix' },
},
}
```
See also:
* [wezterm.mux](../wezterm.mux/index.md)