mux-startup
On this page
mux-startup#
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:
local wakterm = require 'wakterm'
local mux = wakterm.mux
-- this is called by the mux server when it starts up.
-- It makes a window split top/bottom
wakterm.on('mux-startup', function()
local tab, pane, window = mux.spawn_window {}
pane:split { direction = 'Top' }
end)
return {
unix_domains = {
{ name = 'unix' },
},
}
See also: