mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00
Setup presentation tooling and functions as a separate step
This commit is contained in:
@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Need gum to query for input
|
|
||||||
yay -S --noconfirm --needed gum python-terminaltexteffects
|
|
||||||
|
|
||||||
# Configure identification
|
|
||||||
clear
|
|
||||||
tte -i ~/.local/share/omarchy/logo.txt --frame-rate 120 expand
|
|
||||||
echo -e ""
|
|
||||||
echo "Let's install Omarchy!" | tte --frame-rate 640 wipe
|
|
||||||
echo -e ""
|
|
||||||
export OMARCHY_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ")
|
|
||||||
export OMARCHY_USER_EMAIL=$(gum input --placeholder "Enter email address" --prompt "Email> ")
|
|
15
install/2-presentation.sh
Normal file
15
install/2-presentation.sh
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Need gum to query for input
|
||||||
|
yay -S --noconfirm --needed gum python-terminaltexteffects
|
||||||
|
|
||||||
|
show_logo() {
|
||||||
|
clear
|
||||||
|
tte -i ~/.local/share/omarchy/logo.txt --frame-rate 120 expand
|
||||||
|
echo -e ""
|
||||||
|
}
|
||||||
|
|
||||||
|
show_subtext() {
|
||||||
|
echo "$1" | tte --frame-rate 640 wipe
|
||||||
|
echo -e ""
|
||||||
|
}
|
7
install/3-identification.sh
Normal file
7
install/3-identification.sh
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
show_logo
|
||||||
|
show_subtext "Let's install Omarchy!"
|
||||||
|
|
||||||
|
export OMARCHY_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ")
|
||||||
|
export OMARCHY_USER_EMAIL=$(gum input --placeholder "Enter email address" --prompt "Email> ")
|
Reference in New Issue
Block a user