diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-01-07 23:50:21 -0500 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-01-07 23:50:21 -0500 |
| commit | 81a54c67aae4e24ca3e2eff88c5036e0a8c1671a (patch) | |
| tree | e929a004ea3a6a42ebe1c4a7c1bcd11013755a30 /copy.sh | |
| parent | 80842a092b0e254c4570da9d4961606a82c2cb74 (diff) | |
Added ghostty config file w/wallust integration
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
new file: ghostty/ghostty.config
modified: ../copy.sh
Diffstat (limited to 'copy.sh')
| -rwxr-xr-x | copy.sh | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -717,6 +717,19 @@ for DIR_NAME in $DIR; do fi done +# Install Ghostty config +GHOSTTY_SRC="config/ghostty/ghostty.config" +GHOSTTY_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/ghostty" +GHOSTTY_DEST="$GHOSTTY_DIR/config" + +if [ -f "$GHOSTTY_SRC" ]; then + mkdir -p "$GHOSTTY_DIR" + install -m 0644 "$GHOSTTY_SRC" "$GHOSTTY_DEST" 2>&1 | tee -a "$LOG" + echo "${OK} - Installed Ghostty config to ${MAGENTA}$GHOSTTY_DEST${RESET}" 2>&1 | tee -a "$LOG" +else + echo "${ERROR} - $GHOSTTY_SRC not found; skipping Ghostty config install." 2>&1 | tee -a "$LOG" +fi + printf "\n%.0s" {1..1} # ags config |
