From: Colin P. McCabe Date: Thu, 23 Jan 2025 20:15:39 +0000 (-0800) Subject: Add .config/ghostty/config X-Git-Url: https://www.club.cc.cmu.edu/~cmccabe/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a8ab2315c68382106b4caa68c27010d573fd745;p=cmccabe-etc Add .config/ghostty/config --- diff --git a/.config/ghostty/config b/.config/ghostty/config new file mode 100644 index 0000000..e06f1c8 --- /dev/null +++ b/.config/ghostty/config @@ -0,0 +1,4 @@ +font-family = GoMono Nerd Font Mono +theme = flexoki-light +font-thicken = true +window-colorspace = display-p3 diff --git a/install-symlinks.sh b/install-symlinks.sh index 3ca68a4..fa26a37 100755 --- a/install-symlinks.sh +++ b/install-symlinks.sh @@ -42,6 +42,7 @@ for file in ${BASEDIR}/.[^.]*; do [ "${basefile}" == ".git" ] && continue [ "${basefile}" == ".gitignore" ] && continue [ "${basefile}" == ".ssh" ] && continue + [ "${basefile}" == ".config" ] && continue pushd .. > /dev/null if [ -L ${basefile} ]; then @@ -72,3 +73,8 @@ pushd ../.gradle rm -f ./gradle.properties ln -s ../.gradle.properties ./gradle.properties popd + +# Install .config/ +mkdir -p ../.config +mkdir -p ../.config/ghostty +cp -f .config/ghostty/config ../.config/ghostty