Use one of the following methods to download and run the installer. The script will prompt before installing gum and then launch the startup menu.
wget -O install.sh https://raw.githubusercontent.com/ekrist1/gumcrucible/main/install.sh
chmod +x install.sh
./install.shcurl -fsSL -o install.sh https://raw.githubusercontent.com/ekrist1/gumcrucible/main/install.sh
chmod +x install.sh
./install.shNote: These may not work in strictly non-interactive contexts due to the confirmation prompt.
bash -c "$(curl -fsSL https://raw.githubusercontent.com/ekrist1/gumcrucible/main/install.sh)"
# or
curl -fsSL https://raw.githubusercontent.com/ekrist1/gumcrucible/main/install.sh | bash
# or
wget -qO- https://raw.githubusercontent.com/ekrist1/gumcrucible/main/install.sh | bash