From 4a7d1fa68b9ec9c3aefc741a22348f604b973a11 Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Wed, 12 Feb 2025 07:16:48 +0000 Subject: Added installer --- installer/installer.sh | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) mode change 100644 => 100755 installer/installer.sh (limited to 'installer') diff --git a/installer/installer.sh b/installer/installer.sh old mode 100644 new mode 100755 index 6b0bd56..e147657 --- a/installer/installer.sh +++ b/installer/installer.sh @@ -1,3 +1,23 @@ #!/usr/bin/env bash -# TODO +EMACS_DIR="${EMACS_DIR:-$HOME/.emacs.d}" + +if [ ! -d $EMACS_DIR ]; then + mkdir -p $EMACS_DIR +fi + +if [ -f "$EMACS_DIR/init.el" ]; then + echo "Existing emacs config detected! Please remove the file '$EMACS_DIR/init.el' to continue." + exit 1 +fi + +# Clone emacs-substrate +pushd $EMACS_DIR +git clone https://github.com/Etenil/emacs-substrate.git + +# Download and prep early-init.el +sed "s%INSTALL_PATH%$EMACS_DIR/emacs-substrate%g" < emacs-substrate/installer/early-init.el > "$EMACS_DIR/early-init-el" +cp emacs-substrate/installer/init.el init.el + +popd + -- cgit v1.2.3