mirror of
https://github.com/aljazceru/omakub.git
synced 2025-12-17 04:24:20 +01:00
10 lines
218 B
Bash
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
|