move to backup

This commit is contained in:
Dennis 2026-03-03 10:46:08 +01:00
parent 294dc66380
commit a0e3d792a9
182 changed files with 156 additions and 103 deletions

View file

@ -1,28 +0,0 @@
local wezterm = require("wezterm")
local mux = wezterm.mux
local helpers = require("helpers")
local M = {}
wezterm.on("gui-startup", function(cmd)
local args = {}
if cmd then
args = cmd.args
end
-- WORKSPACES
-- W: dennis
local _, _, _ = mux.spawn_window({
workspace = "dennis",
cwd = wezterm.home_dir,
args = args,
})
mux.set_active_workspace("dennis")
end)
function M.apply_to_config(config)
return config
end
return M