mirror of
https://github.com/aljazceru/omakub.git
synced 2026-01-14 01:44:19 +01:00
8 lines
294 B
Bash
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 -
|