From 81a54c67aae4e24ca3e2eff88c5036e0a8c1671a Mon Sep 17 00:00:00 2001 From: Don Williams Date: Wed, 7 Jan 2026 23:50:21 -0500 Subject: 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 --- copy.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index d73514b4..9de8677c 100755 --- a/copy.sh +++ b/copy.sh @@ -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 -- cgit v1.2.3