Refer to Omarchy not Omakub

This commit is contained in:
David Heinemeier Hansson
2025-06-28 10:10:03 -07:00
parent 451ff9ed97
commit 31422e233d
2 changed files with 8 additions and 8 deletions

View File

@ -3,5 +3,5 @@ yay -S --noconfirm --needed gum
# Configure identification # Configure identification
echo -e "\nEnter identification for git and autocomplete..." echo -e "\nEnter identification for git and autocomplete..."
export OMAKUB_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ") export OMARCHY_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_EMAIL=$(gum input --placeholder "Enter email address" --prompt "Email> ")

View File

@ -20,12 +20,12 @@ git config --global alias.st status
git config --global pull.rebase true git config --global pull.rebase true
# Set identification from install inputs # Set identification from install inputs
if [[ -n "${OMAKUB_USER_NAME//[[:space:]]/}" ]]; then if [[ -n "${OMARCHY_USER_NAME//[[:space:]]/}" ]]; then
git config --global user.name "$OMAKUB_USER_NAME" git config --global user.name "$OMARCHY_USER_NAME"
fi fi
if [[ -n "${OMAKUB_USER_EMAIL//[[:space:]]/}" ]]; then if [[ -n "${OMARCHY_USER_EMAIL//[[:space:]]/}" ]]; then
git config --global user.email "$OMAKUB_USER_EMAIL" git config --global user.email "$OMARCHY_USER_EMAIL"
fi fi
# Set default XCompose that is triggered with CapsLock # Set default XCompose that is triggered with CapsLock
@ -33,6 +33,6 @@ tee ~/.XCompose >/dev/null <<EOF
include "%H/.local/share/omarchy/default/xcompose" include "%H/.local/share/omarchy/default/xcompose"
# Identification # Identification
<Multi_key> <space> <n> : "$OMAKUB_USER_NAME" <Multi_key> <space> <n> : "$OMARCHY_USER_NAME"
<Multi_key> <space> <e> : "$OMAKUB_USER_EMAIL" <Multi_key> <space> <e> : "$OMARCHY_USER_EMAIL"
EOF EOF