2024-05-30 14:12:34 -05:00
|
|
|
# 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"
|
2024-06-04 15:02:54 -05:00
|
|
|
sudo apt install ./gum.deb
|
2024-05-30 14:12:34 -05:00
|
|
|
rm gum.deb
|
|
|
|
cd -
|