Files
omakub/install/desktop/select-optional-apps.sh
David Heinemeier Hansson 7711ecb60b Split into desktop and terminal
And add a bunch more apps
2024-07-03 14:15:53 +02:00

10 lines
218 B
Bash

if [[ -v OMAKUB_FIRST_RUN_OPTIONAL_APPS ]]; then
apps=$OMAKUB_FIRST_RUN_OPTIONAL_APPS
if [[ -n "$apps" ]]; then
for app in $apps; do
source "$OMAKUB_PATH/install/desktop/optional/app-${app,,}.sh"
done
fi
fi