From de51fd7f8d6e5e0b0d68790b9c2d79d67d0564a7 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 8 Jan 2026 01:12:27 -0500 Subject: Create default config for Wezterm NOT themed yet At this time wezterm is not installed by default However, if user installs it they will have a nice config to begin with Later I hope to add theming support On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md new file: config/wezterm/wezterm.lua modified: copy.sh --- copy.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index 34a4e543..e552b1e0 100755 --- a/copy.sh +++ b/copy.sh @@ -734,6 +734,19 @@ else echo "${ERROR} - $GHOSTTY_SRC not found; skipping Ghostty config install." 2>&1 | tee -a "$LOG" fi +# Install WezTerm config +WEZTERM_SRC="config/wezterm/wezterm.lua" +WEZTERM_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/wezterm" +WEZTERM_DEST="$WEZTERM_DIR/wezterm.lua" + +if [ -f "$WEZTERM_SRC" ]; then + mkdir -p "$WEZTERM_DIR" + install -m 0644 "$WEZTERM_SRC" "$WEZTERM_DEST" 2>&1 | tee -a "$LOG" + echo "${OK} - Installed WezTerm config to ${MAGENTA}$WEZTERM_DEST${RESET}" 2>&1 | tee -a "$LOG" +else + echo "${ERROR} - $WEZTERM_SRC not found; skipping WezTerm config install." 2>&1 | tee -a "$LOG" +fi + printf "\\n%.0s" {1..1} # ags config -- cgit v1.2.3