mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00
11 lines
384 B
Bash
11 lines
384 B
Bash
#!/bin/bash
|
|
|
|
# Need gum to query for input
|
|
yay -S --noconfirm --needed gum
|
|
|
|
# Configure identification
|
|
source ~/.local/share/omarchy/ansi.sh
|
|
echo -e "\nEnter identification for git and autocomplete..."
|
|
export OMARCHY_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ")
|
|
export OMARCHY_USER_EMAIL=$(gum input --placeholder "Enter email address" --prompt "Email> ")
|