wezterm: add nemo exec domain

This commit is contained in:
Daniel Lundin 2024-06-20 12:31:26 +02:00
parent 172034e7af
commit 69d897e7c3
No known key found for this signature in database

View file

@ -19,6 +19,14 @@ config.exec_domains = {
cmd.args = wrapped
return cmd
end),
wezterm.exec_domain("nemo", function(cmd)
local wrapped = { "/usr/bin/ssh", "-t", "nemo" }
for _, arg in ipairs(cmd.args or { os.getenv("SHELL") }) do
table.insert(wrapped, arg)
end
cmd.args = wrapped
return cmd
end),
}
local function activate_nvim(window, pane)
@ -177,7 +185,6 @@ config.allow_square_glyphs_to_overflow_width = "Always"
-- Config
config.enable_wayland = true
config.term = "wezterm"
config.check_for_updates = false
-- UI