From eda75b33c061162f6786d6eb8cf286a0707aca11 Mon Sep 17 00:00:00 2001 From: Jonas Kalderstam Date: Thu, 7 Aug 2025 21:36:51 +0200 Subject: [PATCH] Add explicit dependency on bash-completion This can be missing from a minimal installation --- install/terminal.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/terminal.sh b/install/terminal.sh index 2d8152cac..eed8e6f85 100644 --- a/install/terminal.sh +++ b/install/terminal.sh @@ -3,7 +3,7 @@ # Needed for all installers sudo apt update -y sudo apt upgrade -y -sudo apt install -y curl git unzip +sudo apt install -y curl git unzip bash-completion # Run terminal installers for installer in ~/.local/share/omakub/install/terminal/*.sh; do source $installer; done