diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-01-08 01:12:27 -0500 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-01-08 01:12:27 -0500 |
| commit | de51fd7f8d6e5e0b0d68790b9c2d79d67d0564a7 (patch) | |
| tree | 7376823b33730f5490c7b5f46fce424b3a9b3eda /copy.sh | |
| parent | 7e057020a428ba234e1557d17d26ec28fedb250f (diff) | |
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
Diffstat (limited to 'copy.sh')
| -rwxr-xr-x | copy.sh | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 |
