Files
omakub/install/app-gum.sh
David Heinemeier Hansson ec7655e75e Use /tmp instead of ~/Downloads for language compatibility
Ubuntu uses local language names for standard folders in ~/
2024-06-11 20:37:41 +02:00

8 lines
294 B
Bash

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