sunhat/install/gum.sh
David Heinemeier Hansson 48a2dd3b32 Always use apt install
2024-06-04 13:02:54 -07:00

8 lines
300 B
Bash

# Gum is used for the Omakub commands for tailoring Omakub after the initial install
cd ~/Downloads
GUM_VERSION="0.14.1" # Use known good version
curl -sLo gum.deb "https://github.com/charmbracelet/gum/releases/latest/download/gum_${GUM_VERSION}_amd64.deb"
sudo apt install ./gum.deb
rm gum.deb
cd -