diff --git a/install/2-identification.sh b/install/2-identification.sh index 20ab81f..c135b29 100644 --- a/install/2-identification.sh +++ b/install/2-identification.sh @@ -3,5 +3,5 @@ yay -S --noconfirm --needed gum # Configure identification echo -e "\nEnter identification for git and autocomplete..." -export OMAKUB_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ") -export OMAKUB_USER_EMAIL=$(gum input --placeholder "Enter email address" --prompt "Email> ") +export OMARCHY_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ") +export OMARCHY_USER_EMAIL=$(gum input --placeholder "Enter email address" --prompt "Email> ") diff --git a/install/4-config.sh b/install/4-config.sh index 7316cd9..c668067 100644 --- a/install/4-config.sh +++ b/install/4-config.sh @@ -20,12 +20,12 @@ git config --global alias.st status git config --global pull.rebase true # Set identification from install inputs -if [[ -n "${OMAKUB_USER_NAME//[[:space:]]/}" ]]; then - git config --global user.name "$OMAKUB_USER_NAME" +if [[ -n "${OMARCHY_USER_NAME//[[:space:]]/}" ]]; then + git config --global user.name "$OMARCHY_USER_NAME" fi -if [[ -n "${OMAKUB_USER_EMAIL//[[:space:]]/}" ]]; then - git config --global user.email "$OMAKUB_USER_EMAIL" +if [[ -n "${OMARCHY_USER_EMAIL//[[:space:]]/}" ]]; then + git config --global user.email "$OMARCHY_USER_EMAIL" fi # Set default XCompose that is triggered with CapsLock @@ -33,6 +33,6 @@ tee ~/.XCompose >/dev/null < : "$OMAKUB_USER_NAME" - : "$OMAKUB_USER_EMAIL" + : "$OMARCHY_USER_NAME" + : "$OMARCHY_USER_EMAIL" EOF